Page 1 of 1

Check text missing

Posted: May 18th, 2013, 5:14 am
by nguyenlinh111
Hi,

How can I check if interviewer missing string variable, eg. If she chose 6..Other (specify), but she only chose 6 and forgot wrote down, how can I check that missing,

Best,

Linh

Re: Check text missing

Posted: May 18th, 2013, 12:08 pm
by khurshid.arshad
Dear nguyenlinh111

Example:
Two variables: 1=Code and 2=Text;


PROC Text

if Code =6 and Text ="" then
errmsg ("Text are missing");
reenter;
else
endif;

a.