I am struggling the most simple SAS macro code. for some reason I cannot get this the call the variable income no matter what I try (quotes, removing underscore, etc.). here is my code. thanks for your help.
options symbolgen mprint;
data temp;
infile DATALINES dsd missover;
input count income_error;
CARDS;
1, 1,
1, 0,
1, 0,
;
run;
%macro one(pc);
proc means noprint data= temp;
var count &pc_error;
output out= &pc1
sum(count &pc_error) =
;
run;
%mend;
%one(income);
you have missed '.' to represent the macro variable to correctly. use the below code.
%macro one(pc);
proc means noprint data= temp;
var count &pc._error;
output out= &pc.1
sum(count &pc._error) =
;
run;
%mend;
%one(income);
you have missed '.' to represent the macro variable to correctly. use the below code.
%macro one(pc);
proc means noprint data= temp;
var count &pc._error;
output out= &pc.1
sum(count &pc._error) =
;
run;
%mend;
%one(income);
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.