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

Hello

Why the macro variable I create doesn't  get the desired value??? (Should get the numeric value of 14Aug2025)

 

%let SAS_FROM_Haamada_date='15AUG2025'd;
data _Null_ ;
From_date_Bakashot=&SAS_FROM_Haamada_date.-1;
call SYMPUTX ('From_date_Bakashot',x);
Run;
%put From_date_Bakashot=From_date_Bakashot.;
1 ACCEPTED SOLUTION

Accepted Solutions
2 REPLIES 2
Ronein
Onyx | Level 15

Now it is 100%

%let SAS_FROM_Haamada_date='15AUG2025'd;
data _Null_ ;
From_date_Bakashot=&SAS_FROM_Haamada_date.-1;
call SYMPUTX ('From_date_Bakashot',From_date_Bakashot);
Run;

%put From_date_Bakashot=&From_date_Bakashot.;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2 replies
  • 726 views
  • 0 likes
  • 2 in conversation