BookmarkSubscribeRSS Feed
teja5959
Fluorite | Level 6

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;

2 REPLIES 2
Kurt_Bremser
Super User

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?

Astounding
PROC Star

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;

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 651 views
  • 0 likes
  • 3 in conversation