BookmarkSubscribeRSS Feed
CharlesR
Calcite | Level 5
ok, i'm pretty fried from lack of sleep at this point . . . i'm trying to add 2 variables to the new data sets i've created. i know it has something to do with using macro variables vs. global variables, but can't seem to find what i'm looking for/don't understand what i'm reading in the discussion forum, lol. here's what i'm trying to do:

[pre]%macro AddVariable(dsns);
%local i dsname;
%let i=1;
%let dsname=%scan(&dsns,&i,%str( ));
%do %while (&dsname ne);
data &dsname;
set &dsname;
TotalPlays = Hit + Out + Err;
OutErr = Out + Err;
run;
%let i=%eval(&i+1);
%let dsname=%scan(&dsns,&i,%str( ));
%end;
%mend AddVariable;[/pre]

Thoughts? Suggestions? Help?

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!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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