BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
KPCklebspn
Obsidian | Level 7

Dataset looks like this -

 

Name  ID  flag1. 

AJ      1     1

AJ      1     .

AJ      1     .

AJ      2     .

 

How do I make dataset looks like this -

 

Name  ID  flag1.  varWant

AJ      1     1         1

AJ      1     .          1

AJ      1     .          1

AJ      2     .          .


Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

As long as your data set is sorted by Name and ID:

 

data want;

set have;

by name id;

if first.id or flag1 > . then varWant = flag;

retain varWant;

run;

View solution in original post

2 REPLIES 2
KPCklebspn
Obsidian | Level 7

To clarify - I want the first obs for flag within a group (name AND ID) to carry down

Astounding
PROC Star

As long as your data set is sorted by Name and ID:

 

data want;

set have;

by name id;

if first.id or flag1 > . then varWant = flag;

retain varWant;

run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 709 views
  • 0 likes
  • 2 in conversation