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

hi all

i have imported  a raw file into sas and then ran several queries against the created dataset.Those queries have the current day,that same day from previous week and the week to date.I will be running the same queries every day so i think it is smart to use macro here but dont know how,i am so new to all this Smiley Happy. I have attached my code here hoping that some of you will help me Smiley Happy

The date will be the only variable changing daily in my queries.So if current date is x then my queries will have x,x-7 and week_to date (x-6 to x)

I would appreciate it if any of you give me some  hint on this

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

You seem to have attached a dataset instead of code.

You can do what you say using macro variables.  You probably do not need to create a macro.

You can use the TODAY() function to get today's date.

%let today = %sysfunc(today());

Then in your queries you can reference this variable

...

where date between &today-6 and &today

If you want to value of the macro variable to be human readable you can make it a date literal.

%let today="%sysfunc(today(),date9.)"d ;

View solution in original post

2 REPLIES 2
Tom
Super User Tom
Super User

You seem to have attached a dataset instead of code.

You can do what you say using macro variables.  You probably do not need to create a macro.

You can use the TODAY() function to get today's date.

%let today = %sysfunc(today());

Then in your queries you can reference this variable

...

where date between &today-6 and &today

If you want to value of the macro variable to be human readable you can make it a date literal.

%let today="%sysfunc(today(),date9.)"d ;

Tal
Pyrite | Level 9 Tal
Pyrite | Level 9

Thanks so much Tom

sas-innovate-white.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.

 

Early bird rate extended! Save $200 when you sign up by March 31.

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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