Hi here i have a small issue in base sas . i have assain blfl variable 'Y' here how to avoied before value
data ex;
input pi test$ result;
cards;
101 gluk 130
101 gluk 140
101 gluk 158
101 gluk 148
101 gluk 145
101 gluk 148
101 prot 200
101 prot 210
101 prot 220
101 prot 290
101 prot 220
101 prot 217
;
run;
data exp;
set ex;
by pi result;
retain;
if result=140 or result=210 then blfl='Y';
else blfl='.';
run;
The by statement causes and error because the dataset ex is not properly sorted.
The retain statement without a variable has no effect.
Could you please post the intended result?
I agree with Kurt, you need to show what your intended result is. Here is a guess:
data want;
set have;
by pi test;
if first.test=0 then blfl='Y';
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.