there are five columnsid 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
If you don't need a new dataset
proc tabulate data=have;
class id;
class flag;
table id, flag *n;
run;
might work.
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
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.
Ready to level-up your skills? Choose your own adventure.
Browse our catalog!