I am evaluating a macro expression, and get the following
However when I use the same expression outside of a macro, I get a different result
How can I get the macro expression to correctly use if qualifiers?
Thanks in advance.
Code:
sysuse auto display "`=price if _n==5' " . 4099
Code:
list price if _n==5 . 7827
How can I get the macro expression to correctly use if qualifiers?
Thanks in advance.

Comment