BookmarkSubscribeRSS Feed
ZRick
Obsidian | Level 7

Can anyone give an example of %eval that returns a boolean value, true/false?

In sas help, it says "If at least one operand cannot be interpreted as numeric, the expression is treated as logical."

But it doesn't give an example,  I tried following:

%eval('0'+1);

it returned an error

I can't think of one example.

3 REPLIES 3
Tom
Super User Tom
Super User

Use %SYSEVALF if you want to enforce the format of the returned value.

%sysevalf(4+5,boolean) will return 1 instead of 9.

Astounding
PROC Star

You can also simulate the result, using %EVAL.  This expression also returns a 1:

%eval ( (4+5) ne 0) 

However, %SYSEVALF will also return 0 for calculated missing values.  %EVAL returns an error.

Also note that %EVAL is still limited to integer arithmetic.  These expressions return different results:

%sysevalf(4/5, boolean)

%eval( (4/5) ne 0)

Hope this helps, rather than confuses the issue!

chang_y_chung_hotmail_com
Obsidian | Level 7

Here is an example. hth

%put %eval( 1.0 eq 1);
%*-- returns 0 for false -- *;

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
  • 1725 views
  • 1 like
  • 4 in conversation