Hi.
I have such problem. I create several reports via proc reports and proc tabulate, but they are presented under one another, but I have free space on my scree I would like to put them side by side.
I use SAS Enterprise Guide
title "Sold Items" ; proc report data=without_colors; where Date eq '30Jun17'd; column Area N_Item_Name Sale_Category; define Area/ group width=6; define N_Item_Name / Across format=$mdclass. width=6; define Sale_Category / Across width=6; run; title "Remaining Mobile Devices in the Warehouses" ; proc report data=r_675_without_colors; where New_Date eq '30Jun17'd; column Area N_Item_Name; define Area / group width=6; define N_Item_Name / Across format=$mdclass. width=6; run;
Please attach a screenshot as image, not as office document.
You can create a Report in EG, select File/New/Report.
You will want to look into gridded outputs to a file format which supports such a thing, the basic output window doesn't, but HTML should:
Also, avoid posting Office files, you would have seen the recent global problems, a lot came from people downloading office files - they are unsafe.
ods layout gridded columns=2 advance=table;
proc print data=sashelp.class;run;
proc print data=sashelp.cars(obs=20);run;
ods layout end;
http://blogs.sas.com/content/iml/2015/12/02/matrices-graphs-gridded-layout.html
http://blogs.sas.com/content/iml/2016/03/02/dummy-variables-sasiml.html
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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.