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

Hello,

 

Can someone tell what I am doing wrong with the below macro? Long story short, I have a input dataset(i'm using cars dataset for illustration purposes) from which I want to extract rows from a starting position and end position. The start and end values could change every run hence I am using macro to the pass the start and end positions.

 

I am getting the below error message:

 

ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was: 10 + 20 + 1
ERROR: Invalid number conversion on OBS.
ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was: 10 + 20 + 55

 

Thank you!

 

Code:

 

 

%let a = 10;
%let b = 20;
%let c = 55;

 

%Macro test(fst,lst);
Data temp;
Set sashelp.cars(firstobs=%eval(&fst. + 1) obs=%eval(&fst. + &lst.));
Run;


%Mend;

%test(%str(&a. + &b.),&c.)
;

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

You are quoting unnecessarily

try:

 

%test((&a. + &b.),&c.)  

View solution in original post

3 REPLIES 3
Tom
Super User Tom
Super User

You appear to be missing a space before the second dataset option name.

(firstobs=%eval(&fst. + 1)    obs=%eval(&fst. + &lst.))
novinosrin
Tourmaline | Level 20

You are quoting unnecessarily

try:

 

%test((&a. + &b.),&c.)  

vicky07
Quartz | Level 8
It worked, Thanks!!

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!

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.

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
  • 3 replies
  • 501 views
  • 3 likes
  • 3 in conversation