Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi I have been trying to count rows which looks at when a column is not null but seem to be getting no where.
Here's my data:
So I'm trying to count rows which has no Payment Ticked of Amount. It works well when I count those that have value more than 0.
"=Count({<[Payment Ticked of Amount] = {"*"}>} [Payment Ticked of Amount])" gives me 2
But "=Count({<[Payment Ticked of Amount] -= {"*"}>} [Payment Ticked of Amount])" gives me 0. Should be 3.
TIA.
Count only counts non-null values. Therefore there is a NullCount() function:
=NullCount([Payment Ticked of Amount])
you are trying to count null values
Try
"=Count({<[Payment Ticked of Amount] -= {"*"}>} [Payment Series ID])"
Hi Kim,
=Count({<[Payment Series ID] = {"=Len(Trim([Payment Ticket of Amount]))=0"}>} [Payment Series ID])
Count only counts non-null values. Therefore there is a NullCount() function:
=NullCount([Payment Ticked of Amount])
May be try this -
NullCount([Payment Ticked of Amount] )
This worked for me.
Cheers!