Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am working on a outstanding report.
User will input different outstading days which will be stored in a variable "vOutStandingDays".
This variable is used to show the outstanding amount in a text object.
=num(Sum({<VehicleSparesType={'Vehicle Sales'},OutStandinfDiff={'>=$(vOutstandingDays'}, BusinessArea={'CA01'}>} Outstanding)/10000000,'###,##,##,###.00')
But it does not give me any output.
Please help for "how to use greater than only in set analysis using one variable'
Thanks in advance.
Missing a closing parenthesis after variable:
'>=$(vOutstandingDays)'}
=num(Sum(
{$<
VehicleSparesType={'Vehicle Sales'},
OutStandinfDiff={'>=$(vOutstandingDays)'},
BusinessArea={'CA01'}
>}
Outstanding)/10000000,'###,##,##,###.00')
Hi,
Try like this
=num(Sum({<VehicleSparesType={'Vehicle Sales'},OutStandinfDiff={'>=$(=vOutstandingDays)'}, BusinessArea={'CA01'}>}Outstanding)/10000000,'###,##,##,###.00')
Regards,
Jagan.
Hi Sarang
try like this
=num(Sum({<VehicleSparesType={'Vehicle Sales'},OutStandinfDiff={"<=$(=vOutstandingDays)"}, BusinessArea={'CA01'}>}Outstanding)/10000000,'###,##,##,###.00')