Hi, While I ran below code, getting value of variable TAG1 as "unchecked" , eventhough values are getting same for TAG and TAG2. Value for TAG1 is not getting correct according to if condition. Any idea why is happening so? Data readin2; a=6882; b=9176; c=68.82; d=91.76; format TAG TAG2 12.8; TAG=a/b; TAG2=c/d; length TAG1 $20; IF TAG = TAG2 THEN TAG1 = "New"; ELSE TAG1 ="Unchecked"; run;
... View more