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

I want to check if there's a certain variable named "ABC"  in the input data set. I can realize it using the following data step:

data want;

set have;

dsid=open('have');

check=varnum(dsid,'ABC');

run;

I will check 'check' and use it for further programming. Now I want to realize the same function using a macro. I have tried the following but it didn't work.

%macro test(&input);

data want;

set &input;

dsid=open('&input');                       *The problem might be here;

check=varnum(dsid,'ABC');

run;

%mend;

%test(xxxx)

Does anyone offer some help? Thank you so much!

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

macro variables only result inside double quotes, not single quotes.

Change to double quotes.

You may also want to consider looking at capturing the outputs of proc contents or querying the dictionary table instead. These are especially useful when your data is large.

View solution in original post

3 REPLIES 3
Reeza
Super User

macro variables only result inside double quotes, not single quotes.

Change to double quotes.

You may also want to consider looking at capturing the outputs of proc contents or querying the dictionary table instead. These are especially useful when your data is large.

PeterPanPan
Calcite | Level 5

Thank youSmiley HappySmiley HappySmiley Happy

SASKiwi
PROC Star

Use double quotes so your &input will resolve: "&input"

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 877 views
  • 3 likes
  • 3 in conversation