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

Dear all,

I am trying to change the format from character to numeric of a list of variables in my dataset. I've written the code but it seems that it applies only to the last variable. So I cannot see all new numeric variables in my dataset. Can anyone help me? The code is attached. 

 

%macro numeric(var);
data mydata.fhsim_n;
set mydata.fhsim;
&var._n=input(&var ,8.);
run;
%mend numeric;
%numeric(Account_No); run;
%numeric(Acct_Status); run;

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

I wouldn't use a macro for it but, since you already wrote it, just make a copy of your original file and then change your macro to work on that file.

 

/* first run a data step like*/

data mydata.fhsim_n;
  set mydata.fhsim;
run;

/*then change your macro to*/
%macro numeric(var);
  data mydata.fhsim_n;
    set mydata.fhsim_n;
    &var._n=input(&var ,8.);
  run;
%mend numeric;

%numeric(Account_No); run;
%numeric(Acct_Status); run;

Art, CEO, AnalystFinder.com

View solution in original post

4 REPLIES 4
art297
Opal | Level 21

You're rewriting the new file each time you run the macro. 

 

Art, CEO, AnalystFinder.com

 

yelena
Fluorite | Level 6
What should I then do to keep all variables in?
art297
Opal | Level 21

I wouldn't use a macro for it but, since you already wrote it, just make a copy of your original file and then change your macro to work on that file.

 

/* first run a data step like*/

data mydata.fhsim_n;
  set mydata.fhsim;
run;

/*then change your macro to*/
%macro numeric(var);
  data mydata.fhsim_n;
    set mydata.fhsim_n;
    &var._n=input(&var ,8.);
  run;
%mend numeric;

%numeric(Account_No); run;
%numeric(Acct_Status); run;

Art, CEO, AnalystFinder.com

yelena
Fluorite | Level 6
Thank you very much! Let me try!

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 4 replies
  • 892 views
  • 0 likes
  • 2 in conversation