BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Kurt_Bremser
Super User

Step 1: write code (without any macro function at all) that successfully converts one variable in one dataset. Once you have that working, replace variable and/or dataset names with macro variables and set those before the step. Once that works, wrap it in a macro where you supply the macro variables as parameters.

 

Everything else is just inviting pain for yourself.

Tom
Super User Tom
Super User

I looks like you are trying to do something like this:

%let oldname= datetime_variable;
%let newname=  date_variable;

data new ;
  set old;
  &newname = datepart(&oldname);
  format &newname date9.;
run;

Since both a DATE and a DATETIME variable are numeric you could set both macro variables to the same dataset variable.

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
  • 16 replies
  • 5879 views
  • 0 likes
  • 6 in conversation