BookmarkSubscribeRSS Feed
SASPhile
Quartz | Level 8


there are five columns
id source target value flag. and flag has the following values.each value can be present more than 1 time for each id

    flag
    first
    gen16
    last
    all


how to transpose this flag field as columns first gen16 last all and then under each of these columns give their count for the respective id       

1 REPLY 1
ballardw
Super User

If you don't need a new dataset

proc tabulate data=have;

     class id;

     class flag;

     table id, flag *n;

run;

might work.

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
  • 1 reply
  • 1077 views
  • 0 likes
  • 2 in conversation