BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
lillymaginta
Lapis Lazuli | Level 10

I have the following data;

 
id date  dx         a b c d e f g
1   1/1/2005 4    1 0 0 0 0 0 0
1   2/2/2005  5    0 0 0 0 0 0  0
1    3/3/2006  3    0 1 0 0 0 0 0 
2    1/2/2005  4    1 0 0 0 0 0 0 
2    2/3/2008   2    0 0 0 0 0 0 0 
2    3/3/2005   3    0 1 0 0 0 0 0
2    3/3/2005   6    0 0 0 0 1 0 0 

 

 

Here is the output I want

id   a b c d e f g
1    1 1 0 0 0 0 0
2     1 1 0 0 1 0 0 

so if the id has any (1) then output 1 for that variable regardless of the date if none then zero. 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Take the max of every column by ID. 

You can use SQL, PROC MEANS/SUMMARY/UNIVARIATE.

 

 

View solution in original post

2 REPLIES 2
Reeza
Super User

Take the max of every column by ID. 

You can use SQL, PROC MEANS/SUMMARY/UNIVARIATE.

 

 

lillymaginta
Lapis Lazuli | Level 10

perfect! I have not thought about this way, thanks Reeza! 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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