You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ("`var'"!="`lowcase'") rename `var' `lowcase' // Will throw error if name is the same
}
Error happens if these two conditions are satisfied:
The dataset has two vars that will have the same name if both converted to lower case (examples region/REGION, region/Region or rEgion/reGion )
Both are included in ID_varname, uniquevars() or keepvars()OR one var is lower case (region) not included in the command but the var is included in ID_varname, uniquevars() or keepvars() .
For a reason I do not remember, the command change all variables in the report to lower case.
Two options to be investigated to solve this.
Test if this is the case and provide user with a helpful error message
See if the command can be modified so it can handle these cases without error.
The text was updated successfully, but these errors were encountered:
iefieldkit/src/ado_files/ieduplicates.ado
Lines 250 to 253 in eb2ee62
Error happens if these two conditions are satisfied:
region
/REGION
,region
/Region
orrEgion
/reGion
)ID_varname
,uniquevars()
orkeepvars()
OR one var is lower case (region
) not included in the command but the var is included inID_varname
,uniquevars()
orkeepvars()
.For a reason I do not remember, the command change all variables in the report to lower case.
Two options to be investigated to solve this.
The text was updated successfully, but these errors were encountered: