@Tom wrote:
The macro just emit a string of characters that look like a condition expression.
So to play around with it just use it in a %PUT statement.
%let mvar=XXX;
%put %_eg_WhereParam( varname, mvar, EQ, TYPE=S );
Results
varname EQ "XXX"
I'm sorry, but this doesn't help me understand which parameters I can add to the call though, does it? I need something to tell me what options I can pass and with which values and what those values mean. Maybe %_eg_WhereParam( varname, mvar, EQ, TYPE=S, JONNY=FISH ); is a valid option, but I'll never know unless I'm told somewhere.
... View more