Hi
I need to create a listings. And trying to do it with proc report. is there anyway I can create a common Heading called 'Date' and under Date I have three columns(variables). Basically it should look like this: Is this possible in proc report?
Date
Birthdate Rficdtc Incdat
Hope it is understandable.
Thanks
Rashmi.
Yes its possible, usually use the option ACROSS within the DEFINE statement.
Vague questions get vague answers. If you need more help, post more details.
@rashmirao99 wrote:
Hi
I need to create a listings. And trying to do it with proc report. is there anyway I can create a common Heading called 'Date' and under Date I have three columns(variables). Basically it should look like this: Is this possible in proc report?
Date
Birthdate Rficdtc Incdat
Hope it is understandable.
Thanks
Rashmi.
A small example:
proc report data=sashelp.cars;
where make="Acura";
columns model ("Miles per Gallon" MPG_City MPG_Highway);
define model / format=$24.;
define MPG_City / "City";
define MPG_Highway / "Highway";
run;
Miles per Gallon
Model City Highway
MDX 17 23
RSX Type S 2dr 24 31
TSX 4dr 22 29
TL 4dr 20 28
3.5 RL 4dr 18 24
3.5 RL w/Navigation 4dr 18 24
NSX coupe 2dr manual S 17 24
The expression in parentheses in the columns statement does it.
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.