Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I'm joining two tables together by [ITMSNumber]. There's 11,000 [ITMSNumber]. Associated with that [ITMSNumber] there is [Application Status]. There is only 10,000 associations between [Application Status] and [ITMSNumber]. The rest of the 1,000 [ITMSNumber] get Null values for their [Application Status]. How do I count those Null values?
Thanks oodles!
What about
Count( {<ITMSNumber = e({<[Application Status] = {"*"}>}) >} DISTINCT ITMSNumber)
Try using the NullCount() function
Or maybe something like
Count( {1-<[Application Status] = {"*"}>} DISTINCT ITMSNumber)
It seemed right but it didn't work. It just counted everything
I did this and it returned a count of 1-
=NullCount ( {1-<[Application Status]>}DISTINCT ITMSNumber)
What about
Count( {<ITMSNumber = e({<[Application Status] = {"*"}>}) >} DISTINCT ITMSNumber)
Thank you so much!
Now how do I make an action that selects only those rows?
Use ITMSNumber as field in your Select in field action and as search string
='=Sum({<ITMSNumber = e({<[Application Status] = {"*"}>}) >} 1)'
Worked again. Thank you so much Stefan!