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.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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