Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys,
I have the following expression: sum({<PayRate={$(V_PayRate)}>Hours). What I want to do is create a between clause. So payrate is between v_payrate and some other variable expression I want to list. Currently it just says = v_payrate
Please help
Thanks,
Byron
Hello Byron,
The general rule for syntax is
Sum({< PayRate = {'>=$(vVariableFrom)<=$(vVariableTo)'} >} Hours)
Anyway, check this file to see how set analysis works with date ranges.
Hope that helps.
Hello Byron,
The general rule for syntax is
Sum({< PayRate = {'>=$(vVariableFrom)<=$(vVariableTo)'} >} Hours)
Anyway, check this file to see how set analysis works with date ranges.
Hope that helps.
Hi Byron:
something like this
sum({<PayRate={">=$(vMinPayRate) <=$(vMaxPayRate)"} Hours)
Thanks Gandalf... I see I can only mark 1 as correct now