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

Tom,

Thank you SO MUCH for the detailed explaination and codes. They are very helpful indeed. I coded some of in my program, it worked perfectly. Again, Thank you for looking into my post and helped me out of the woods in time.

Leigh

Ksharp
Super User

It could be simpler.

%LET QT=%eval(%sysfunc(today(),qtr.)-1);

%put qt=&qt;

Ksharp

leisas
Calcite | Level 5

Yes, it is simpler and worked. Thank you!

Tom
Super User Tom
Super User

Why is your data step mixing macro and normal SAS functions?

If you want to use the automatic macro variable SYSDATE9 in a Data step there is normally not a need to convert it first with macro programming statements.

data quatr;

q=qtr("&sysdate9"d)-1;

run;


leisas
Calcite | Level 5

You're correct. I did the extra step just want to see what I would get so as qtr function can take and convert.  Your code is absolute correct and effecient. Thanks a lot!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 19 replies
  • 4093 views
  • 10 likes
  • 5 in conversation