Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
count({sum((BILL_DOLLARS)/sum(AVAIL_DOLLARS))<=$(vBillSlider)}EmployeeID) any help would be appreciated please
Why using count when already using SUM()
try this
Count(if((BILL_DOLLARS / AVAIL_DOLLARS)<=$(vBillSlider),EmployeeID))
Hi,
Try this one.
Ex:
=Count(DISTINCT if((sum(BILL_DOLLARS)/sum(AVAIL_DOLLARS))<=$(vBillSlider),EmployeeID))
Else
try this in set analysis.
=count(DISTINCT {$<EmployeeID={"=$(=(sum(BILL_DOLLARS)/sum(AVAIL_DOLLARS)) <= $(vBillSlider))"}>}EmployeeID)