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

What am I doing wrong with the code below?

Best,

Chris

data have;

input var $1.;

datalines;

a

a

b

c

d

;

run;

data want;

input var $ var2 $;

cards;

a b

a b

b b

c b

d b

;

run;

proc sql noprint;

select distinct var into :macro_var separated by " "

from have;

quit;

data want;

set have;

var2=scan(&macro_var,2);

run;

The code above gives me the following error:

1435  data want1;

1436  set have;

1437  var2=scan(&macro_var,2);

NOTE: Line generated by the macro variable "MACRO_VAR".

1     a b c d

        -

        388

        76

ERROR 388-185: Expecting an arithmetic operator.

ERROR 76-322: Syntax error, statement will be ignored.

1438  run;

NOTE: The SAS System stopped processing this step because of errors.

WARNING: The data set WORK.WANT1 may be incomplete.  When this step was stopped there were 0

         observations and 2 variables.

NOTE: DATA statement used (Total process time):

      real time           0.01 seconds

      cpu time            0.01 seconds

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Change:

var2=scan(&macro_var,2);


To:

var2=scan("&macro_var.",2);


Remember that in this instance you are using scan as a function in a datastep, so parameter one needs to be a string - i.e. quoted.

View solution in original post

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Change:

var2=scan(&macro_var,2);


To:

var2=scan("&macro_var.",2);


Remember that in this instance you are using scan as a function in a datastep, so parameter one needs to be a string - i.e. quoted.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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