BookmarkSubscribeRSS Feed
anirudhs
Obsidian | Level 7
hi one of my senior had designed a code and in every program of eg he has passed %let dd=10.
ie.is first two digits of todays date. as we have to open each and every program change the digit to todays date manually and run,
so in need help for code to pass the todays dates first two digits automatically.
And i dont want to open every program and dont have to pass it manually.
please help

eg. if todays date is 10th nov 2017 so i have to manually enter it as %let dd=10 and this into every program.
so how can i automate it where i can check fo todays date and pass only two digits of system date.

thankyou
3 REPLIES 3
Reeza
Super User

Global macro variables work throughout a session. If you declare it once, you don't need to keep redeclaring it.

It helps to have it at the top of the program because it allows you to manually test things, but it's not necessary. 

 

%let dd =  %sysfunc(day(%sysfunc(today())), z2.);

%put DD = ⅆ
anirudhs
Obsidian | Level 7
y have to use %put DD = &dd referencing and where.
Kurt_Bremser
Super User

@Reeza inserted the %put just so you can see in the log which value was derived from the initial %let, and that it works as expected. That way values are also kept in the log for future reference. Aside from showing values in the log, the %put does nothing.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 3 replies
  • 399 views
  • 0 likes
  • 3 in conversation