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

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);

1 ACCEPTED SOLUTION

Accepted Solutions
Vish33
Lapis Lazuli | Level 10

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);

 

View solution in original post

1 REPLY 1
Vish33
Lapis Lazuli | Level 10

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);

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1 reply
  • 883 views
  • 0 likes
  • 2 in conversation