Hi All,
I have a Running Total field performing conditional count in my Group Footer which counts (some of) the Detail records subject to a formula, and resets on change of Group.
All well and good, but if there are no detail records which match the criteria, the count field is blank. How do I make it display zero?
I have tried:
- "Suppress if Zero" is cleared
- No other suppression formula
- I tried creating a formula which says
and using that instead, but that comes up blank too!
Any suggestions appreciated, many thanks in advance.
I have a Running Total field performing conditional count in my Group Footer which counts (some of) the Detail records subject to a formula, and resets on change of Group.
All well and good, but if there are no detail records which match the criteria, the count field is blank. How do I make it display zero?
I have tried:
- "Suppress if Zero" is cleared
- No other suppression formula
- I tried creating a formula which says
Code:
if isnull({#CountField}) then 0 else {#CountField}
Any suggestions appreciated, many thanks in advance.