I wrote a report a long time ago using a distinct count of work orders. In the details section I wrote the formula:
if {orders.servicecode} = "BAS" then {orders.workordnumber} else 0
I then wrote a formula in the group field for the distinct count of work order numbers minus one to get the total.
However, if a work order contained two of the service BAS, it would be doubled in the details section. However, I cannot get an actual count because the count function counts all the zeroes, telling me basically how many entries are in the orders database. Is there a way to count only the numbers greater than zero?
if {orders.servicecode} = "BAS" then {orders.workordnumber} else 0
I then wrote a formula in the group field for the distinct count of work order numbers minus one to get the total.
However, if a work order contained two of the service BAS, it would be doubled in the details section. However, I cannot get an actual count because the count function counts all the zeroes, telling me basically how many entries are in the orders database. Is there a way to count only the numbers greater than zero?