Date: Fri, 24 May 2002 11:13:53 -0700
Reply-To: prasad.s.ravi@HOUSEHOLD.COM
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Prasad Ravi <prasad.s.ravi@HOUSEHOLD.COM>
Subject: Re: TITLE - include the contents of a variable?
Content-type: text/plain; charset=us-ascii
Elise:
You could do that by creating a macro variable for year
as follows CALL SYMPUT('YR',YEAR) and using it in your title
TITLE "Academic year &YR";
Prasad Ravi
Elise Beauregard To: SAS-L@LISTSERV.UGA.EDU
<elise.beauregard cc:
@MCGILL.CA> Subject: TITLE - include the contents of a variable?
Sent by: "SAS(r)
Discussion"
<SAS-L@LISTSERV.U
GA.EDU>
05/24/2002 10:54
AM
Please respond to
Elise Beauregard
How do you include the contents of a variable in a TITLE?
I want to include the variable YEAR in the title, and I know this doesn't
work:
ex: TITLE 'Academic year' YEAR;
result: Academic year 2001