Check text missing

Discussions about CSEntry
Forum rules
New release: CSPro 8.0
Post Reply
nguyenlinh111

Check text missing

Post 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
khurshid.arshad
Posts: 571
Joined: July 9th, 2012, 11:32 am
Location: Islamabad, Pakistan

Re: Check text missing

Post 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.
Post Reply