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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

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