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

So I have a file that has the following data:

User,

Session

 

What I want to happen is I want to list a user and then for each of the three sessions have a "Y" or "N" if they attended.  So something like this:

 

User Session 1 Session 2 Session 3
Harry Crumb Y N Y

 

I have tried this code, however I am getting three separate lines generated.  So I am trying to figure out how to put everything on the 1 line.

 

CASE
when Session in ('Session_1') then ('Y)
else ('N')
end as Session_1,

CASE
when Session in ('Wave_2') then ('Y')
else ('N')
end as WAVE_2,

CASE
when Session in ('Session_3') then ('Y')
else ('N')
end as Session_3

 

I was trying to search for the answer, but I am not sure what this type of syntax is called.

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

In a first data step, add a variable x that contains just a 'Y'.

Then transpose with

by user;

id session;

var x;

In a final data step, replace all missing character variables with 'N'.

This method is data-driven , no explicit coding for values is needed.

Note that for this to work, session must contain valid SAS names.

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

In a first data step, add a variable x that contains just a 'Y'.

Then transpose with

by user;

id session;

var x;

In a final data step, replace all missing character variables with 'N'.

This method is data-driven , no explicit coding for values is needed.

Note that for this to work, session must contain valid SAS names.

IgawaKei29
Quartz | Level 8

Thank you that was a big help.  I have only used PROC Transpose a few times, so I didn't think of using it here.  I will be using this again I'm sure!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1362 views
  • 1 like
  • 2 in conversation