Hi
I just discovered that changes in labels is not captured by either c(changed) or describe (In the manual they are said work similarly) as seen by:
Code:
cls
sysuse auto, clear
label variable rep78 "Change label"
describe
display "`c(changed)'"

sysuse auto, clear
gen x = 1
label variable rep78 "Change label"
describe
display "`c(changed)'"
Is there a way to detect all changes in a dataset?

Looking forward to hear from you