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

Hi all,

I'm trying to compare two variables macro (price_trd vs max_price) however as the example below that's not happening....

Please someone could give me a little help ?

TK'S IN ADVANCED!

########## CODE BELOW #########

options mlogic mprint;

%let price_trd = 93.68;

%put &price_trd.;

%let max_price = 100.94;

%put &max_price.;

%macro test;

  %if  &price_trd. < &max_price %then %do;

  %put Pass HERE;

  %end;

%mend;

%test;

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Need to use %SYSEVALF() to do floating point calculations, otherwise macro will attempt to use %EVAL() which only does integer math.

View solution in original post

2 REPLIES 2
Tom
Super User Tom
Super User

Need to use %SYSEVALF() to do floating point calculations, otherwise macro will attempt to use %EVAL() which only does integer math.

Reeza
Super User

Wrap the comparison in %sysevalf

E.G.

  %if  %sysevalf(&price_trd. LT &max_price) %then %do;

As always in the fine print (floating point arithmetic vs integer for %eval).

SAS(R) 9.2 Macro Language: Reference

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
  • 2 replies
  • 8251 views
  • 5 likes
  • 3 in conversation