Page 1 of 1

Capturing same entry

Posted: January 22nd, 2019, 12:26 am
by Socio
Dear members

I would like to know how to capture the same entry of a variable in another variable

Eg.
Q1. 2 (recorded as 2 response)
Q2.
Q3.
Q4. (I want the same response “2” o Q1 automatically).

Thanks.

Re: Capturing same entry

Posted: January 22nd, 2019, 7:53 am
by josh
You can simply assign Q1 to Q4 in the preproc of Q4.
PROC Q4
preproc

Q4 = Q1;
If you don't want the user to be able to modify the value you can set the field to protected by right clicking on the field and choosing field properties.

Re: Capturing same entry

Posted: January 27th, 2019, 12:38 pm
by Socio
Thank you Josh