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

Hi all,

 

I tried to convert a sas date in a macro variable into a different format like in https://communities.sas.com/t5/Base-SAS-Programming/Macro-to-convert-character-to-numeric-variable/m..., but it does not work for me:

 

23         %put &StT; /* aus der Eingabeaufforderung */
20170401
24          
25         %let dateend = %sysfunc(putn(%sysfunc(INPUTN(%sysfunc(PUTN(&StT, Z8.)), YYMMDD8.)), date9.));
26         %put &dateend;
01APR2017
27          
28          
29         %PUT SAS DATA VALUE: &StT;
SAS DATA VALUE: 20170401
30          
31         %let dateend2 = %sysfunc(INPUTN(&StT, Z8.), date9.);
32         %put &dateend2;
*********
33        

 

I cannot find my error. Can somebody please help?

1 ACCEPTED SOLUTION
2 REPLIES 2
Shmuel
Garnet | Level 18

on line 31 you missed the PUTN function:

 

%let dateend2 = %sysfunc(INPUTN(PUTN(&StT, Z8.), YYMMDD8.), date9.);

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 28303 views
  • 2 likes
  • 3 in conversation