BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
arodriguez
Lapis Lazuli | Level 10

Hi,

 

Yesterday, I was programming on macro and I realized that in a macro evaluation 10 is not equal than 1e1, but in a data step it says that they are equal.

 

%put %eval(10=1e1);
0

data test;
if 10=1e1 then put "1";
run;

1

 

Why happen this?

1 ACCEPTED SOLUTION

Accepted Solutions
Patrick
Opal | Level 21

You need "%sysevalf()". Run the following

 

data _null_;
var= 10=1e1;
put var=;
run;

%put eval: %eval(10=1e1);
%put sysevalf: %sysevalf(10=1e1);

 

 

View solution in original post

2 REPLIES 2
Patrick
Opal | Level 21

You need "%sysevalf()". Run the following

 

data _null_;
var= 10=1e1;
put var=;
run;

%put eval: %eval(10=1e1);
%put sysevalf: %sysevalf(10=1e1);

 

 

Kurt_Bremser
Super User

The macro processor is a pure text engine, so you need to see all comparisons as character comparisons, unless you override that behaviour, as Patrick already pointed out.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 2 replies
  • 899 views
  • 1 like
  • 3 in conversation