Hi,
I have a file containing responses to a questionnaire, and want to assign the values of some of the variables to new variables, so that I can make use of a macro (more details here: https://medicine.umich.edu/dept/urology/research/epic).
Everything works well, except that the new variables don't inherit the labels from the old variables, which is slightly annoying. Is there a way to make this work?
Just to spell it out:
attrib SC_EPICB_EPICBQ1 length=$2 label='1. Rectal Urgency';
...
EPICBQ1 = SC_EPICB_EPICBQ1 ;
...
q42 = input(EPICBQ1, 1.);
...
... View more