BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
robm
Quartz | Level 8

I have a proc tab

 

option validvarname=any;
libname stdnt "E:\SAS\Data\Student";
libname robm "f:\robm";

proc tabulate data=ROBM.dump missing contents = ' ' format=COMMA6.0 S=[foreground=highlight.];
   class 'Reporting Year'n 'Responsible College'n 'Reporting Year'n;
   var 'Final Charge'n;
   keylabel Sum = " ";
   table  ('Responsible College'n ="")  all=Total , (('Reporting Year'n="Reporting Year" )*(('Final Charge'n = "")*F=COMMA12.0)) /
                  contents = ' ' misstext=' ' box={label="test"};
  run;

 

that gives

 

 proctab.PNG

 

How do I get a 4th column that is the difference of 2017/2018 – 2016/2017 values?

 

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

@robm wrote:

 

How do I get a 4th column that is the difference of 2017/2018 – 2016/2017 values?

 


Either use proc report which allows referencing result columns in calculations or do all of the summary before, do the calculation in a datastep and use proc tabulate (or report or print) to display the calculated result.

View solution in original post

2 REPLIES 2
ballardw
Super User

@robm wrote:

 

How do I get a 4th column that is the difference of 2017/2018 – 2016/2017 values?

 


Either use proc report which allows referencing result columns in calculations or do all of the summary before, do the calculation in a datastep and use proc tabulate (or report or print) to display the calculated result.

robm
Quartz | Level 8

Thanks Ballard

Summary before is the way i went

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1145 views
  • 2 likes
  • 2 in conversation