hello dear SAS experts,
I want to parametrize a macrovariable which I use in a bunch of programs. I wrote:
* Jahr eingeben ;
%let Jahr = 2022 ;
%put &Jahr. ;
* Macro-code fuer den Auswertungstag ;
%let Auswertungstag = '01JAN&Jahr.'D;
%put &Auswertungstag.;
I want to use &Jahr. to Change the year and get the Dates with the following form: '01JAN2022'D
What should I Change?
Regards