Hello EG Users,
How can one store value that represents distinct rows of a variable in dataset into macro?
Data have;
Week Activity
5 Pingpong
10 Badminton
15 Chess
I would like to count distinct values for Week, which is 3 in this case and store it in macro Week_Distinct.
I would appreciate your instructions on how to achieve that?
Regards,
Dhanashree
untested code
proc sql noprint;
select distinct(week) into :week_distinct from have;
quit;
hi,
correct sql should be:
Data have;
input Week Activity :$;
cards;
5 Pingpong
10 Badminton
15 Chess
;
proc sql ;
select count(distinct week) into :week_distinct from have;
quit;
238 %put &week_distinct;
3
Thanks!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.