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

Hi

I have a SAS date as a macro variable as follows:

%let Date_selected = 01Feb2022

I want to extract the month as a two digit no from this.

(eg: FEB => month_no = 02,

       Mar => month_no = 03,

       Apr => month_no = 04

etc).

With SYMPUTX I can get the month as a digit but not in 2 digit format.

call symputx("month_no",put("&Date_selected"d,month.)); /*this gives month_no = 2*/

Can someone help me with this?

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
andreas_lds
Jade | Level 19

Why call symputx?

%let Date_selected = 01Feb2022;
%let m = %sysfunc(month("&date_selected."d), z2.);

View solution in original post

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

Try this

 

%let Date_selected = 01Feb2022;

data _null_;
   m = put(month("&Date_selected"d), z2.);
   call symputx('m', m);
run;

%put &m.;
andreas_lds
Jade | Level 19

Why call symputx?

%let Date_selected = 01Feb2022;
%let m = %sysfunc(month("&date_selected."d), z2.);
madara155
Obsidian | Level 7

Thank you very much 🙏 You saved my life 

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!
SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 3 replies
  • 2006 views
  • 1 like
  • 3 in conversation