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

I am trying to create a table using the following code using SAS 9.4.  The parameter value &rptyr is a four-character integer (representing the year of the report).  I would like TITLE3 to provide the following result, and the code I am using below is only the most recent of several unsuccessful approaches at achieving this result:

 

Race and Gender Breakdown of All Students from Fall 2015 to Spring 2016 

 

proc tabulate data=srkdemog_ath out=srkdemog_all;
	var athlete;
	class state campus_code campus_desc ethnicity gender bid;
	table all='College' ethnicity='' gender='',
		(all='College' state=''*campus_code='Campus'*campus_desc='')*athlete=''*n='Total'*f=comma8.;
	title 'Student Right-to-Know Graduation Rate';
	title2 'Student Athletes';
	title3 "Race and Gender Breakdown of All Students from Fall %sysfunc(put(&rptyr-1,4.)) to Spring &rptyr";
	run;

 

Any assistance towards achieving this goal would be welcome.  Thank you.

 

Marc

 

1 ACCEPTED SOLUTION

Accepted Solutions
4 REPLIES 4
Reeza
Super User

%EVAL instead of PUT and SYSFUNC?

MFLoGrasso
Obsidian | Level 7
This worked perfectly. Thanks!
Astounding
Opal | Level 21

%SYSFUNC does not support the PUT function.  You can switch to the PUTN function instead.  Once you do that, you may have to experiment with the third parameter (it may need to go in quotes).

MFLoGrasso
Obsidian | Level 7
I tried this as well, since you took the time to answer, and using PUTN instead of PUT also worked, so thank you!

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!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 4 replies
  • 1054 views
  • 2 likes
  • 3 in conversation