BookmarkSubscribeRSS Feed
tom12122
Obsidian | Level 7

1. How to convert macro variable from format 2011-01-01 to 01Jan2011.  I know how to do it in data step bud don't know how to do it in macro - i need to use reformatted macro variable in a macro and use it with changed format for PROC SQL purposes.

Working data step:

data _null_;

data = '2011-01-24';

data = INPUT(data, yymmdd10.);

FORMAT data1 DATE9.;

put data ;

run;

Please help to executa that in macro in order to get changed &date macro variable with the same name.

2 REPLIES 2
FloydNevseta
Pyrite | Level 9

How about:

data _null_;
dt = '2011-01-24';
data = INPUT(dt, yymmdd10.);
call symput( 'data', put( data, date9. ));
run;

%put &data;

Patrick
Opal | Level 21

Are you after something like below?

%let HaveDateString=2011-01-01;

%let WantDateString=%sysfunc(inputn(&HaveDateString,yymmdd10.),date9.);

%put WantDateString= &WantDateString;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

Discussion stats
  • 2 replies
  • 9177 views
  • 1 like
  • 3 in conversation