BookmarkSubscribeRSS Feed
timmy555
Calcite | Level 5

Is there a way to print a data set grouped by a variable? Can I do this in the proc print step or do I have to do it in another step?

2 REPLIES 2
Jagadishkatam
Amethyst | Level 16

Could you please provide more details with an example and expected output to get better response.

Thanks,
Jag
novinosrin
Tourmaline | Level 20

Do you mean this by " to print a data set grouped by a variable"?

 


proc print data=sashelp.cars;
by make;
run;

or


proc print data=sashelp.cars;
by make;
pageby make;
run;

 

 


@timmy555 wrote:

Is there a way to print a data set grouped by a variable? Can I do this in the proc print step or do I have to do it in another step?


 

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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 lock in 2025 pricing—just $495!

Register now

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 789 views
  • 0 likes
  • 3 in conversation