BookmarkSubscribeRSS Feed
harsh0404
Fluorite | Level 6
title " actual_rev" ;
proc tabulate data=have;
   class decile agegroup ;
   var actual_rev;
   table decile=' ', 
        agegroup *EXP_RPP=''*mean=''
         /misstext=' ' box=decile;
run; 

title "proj_rev" ;
proc tabulate data=have;
   class decile agegroup ;
   var proj_rev;
   table decile=' ', 
       agegroup *proj_rev=''*mean=''
         /misstext=' ' box=decile ;
run; 

I have to compare 2 tables here. projected revenue and actual revenue (table is by decile and age group). 

When i run in SAS, I get tables one after another vertically. 

 

My boss wants it placed horizontally to each other for easy comparison.  in this one i went to excel and used pivot table.. (please ignore the values inside and the name of the variables)

putthisplease.PNGwewantac tual.PNG

2 REPLIES 2
DanH_sas
SAS Super FREQ

Something like the following should work for you:

 

ods _all_ close;
ods html;
ods layout gridded columns=2;
ods region;
proc print data=sashelp.class; run;
ods region;
proc print data=sashelp.class; run;
ods layout end;
ods html close;

Hope this helps!

Dan

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

How to Concatenate Values

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1184 views
  • 2 likes
  • 3 in conversation