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

am trying to create a macro variable to append to a report name and I need it to be mmdd, (ie 0709, for july 9th).  So far I have been unsuccessful trying to separate the date parts and concatenating back together in this format.  I know there is probably an easy fix but I am just not getting there.  Any assistance will be greatly appreciated.

 

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Use mmddyyN4 format like this

 

data _null_;
work_date= today();
call symput ("wod",put(work_date,mmddyyN4.));
run;

%put &wod.;

View solution in original post

6 REPLIES 6
PeterClemmensen
Tourmaline | Level 20

How are your date values stored?

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Show some test data, we can't guess!

data _null_;
  call symput('d',put('01JAN2016'd,yymmdd10.));
run;

ods rtf file="abc_&d..rtf";
...

For example.

Elliott
Obsidian | Level 7

sorry,

 

I am using the today function for the date.

 

data _null_;

work_date= today();

call symput ("wod",put(work_date,yymmddn8.));

run;

PeterClemmensen
Tourmaline | Level 20

Use mmddyyN4 format like this

 

data _null_;
work_date= today();
call symput ("wod",put(work_date,mmddyyN4.));
run;

%put &wod.;
Elliott
Obsidian | Level 7
Thank you so much, you all are awesome!
rvsidhu035
Quartz | Level 8

 

data month_date;
x='07jun1989'd;
format x mmddyyn4.;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 6 replies
  • 2490 views
  • 3 likes
  • 4 in conversation