Hi,
A "quick" question...
I have the following code:
do if (refgroup <> compgroup).
if (pctdiff_se > 0) pctdiff_t = pctdiff / pctdiff_se.
end if.
When either refgroup or compgroup are missing, either system or user defined, the IF is not executed.
You can see the behavior here:
** start code**.
data list / a 1-1 b 2-2.
begin data.
12
1
2
11
22
13
23
33
end data.
missing values b(3).
if (a<>b) x = 1.
do if (a=b).
compute y = 1.
else.
compute y = 2.
end if.
list var = all.
** end code.
Is there a way to "allow" for this comparison to take place without converting the missing values into not-missing?
Thanks!
E.
This e-mail and any files transmitted with it may contain privileged or confidential information. It is solely for use by the individual for whom it is intended, even if addressed incorrectly. If you received this e-mail in error, please notify the sender; do not disclose, copy, distribute, or take any action in reliance on the contents of this information; and delete it from your system. Any other use of this e-mail is prohibited.
Thank you for your compliance.