|
Question : Counting in a Report
|
|
I have a report setup that has values, some values are zero(0) and some have a 1,2,3etc.... My question is how can I count only the values, excluding zeros(0, I do not want to sum them, only count >0 values.
|
|
Answer : Counting in a Report
|
|
Set up a counter in your source like this: counter: IIf(([yourfield])="0",'0','1') then sum the counter field in your report.
|
|
|
|