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


Hi,

I want to change a variable in a data.

But I want to do the same job for multiple files in a directory.

I kind of feel that I can do this efficiently if I use macro, but I do not know exactly becuase I am  just a beginner of SAS macro.

The SAS code for one file is..

data test;

set pars.prod11_beer;

COLUPC = 1*UPC

drop UPC;

run;

Any advice or suggetion from you would be greatly appreciated!

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Jagadishkatam
Amethyst | Level 16

Hi ,

Please try the below macro

%macro dir(name=,file=,var=,var2=);

data &name;

set pars..&file;

&var= 1*&var2

drop &var2;

run;

%mend;

%dir(name=test, file=prod11_beer,var=COLUPC,var2=UPC);

Hope this helps

Thanks,

Jagadish

Thanks,
Jag

View solution in original post

4 REPLIES 4
Jagadishkatam
Amethyst | Level 16

Hi ,

Please try the below macro

%macro dir(name=,file=,var=,var2=);

data &name;

set pars..&file;

&var= 1*&var2

drop &var2;

run;

%mend;

%dir(name=test, file=prod11_beer,var=COLUPC,var2=UPC);

Hope this helps

Thanks,

Jagadish

Thanks,
Jag
jhhuh
Calcite | Level 5

Thanks.

But it did not work well..

I got the error message below.

error.jpg

Do you have any idea why this happened?

Jagadishkatam
Amethyst | Level 16

Hi

Please remove the additional . from pars..&file, there should be a single . like this

pars.&file

Please try and let me know the output.

Thanks,

Jagadish

Thanks,
Jag
jhhuh
Calcite | Level 5

Thank you so much!

It worked beautifully!

Jin-Hee Huh

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1809 views
  • 3 likes
  • 2 in conversation