Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I want to create a count formula that counts all IDs excpet the ones with " n/a ". So far I'm using
=count(DISTINCT(Id))
What else do I need to add so this fiormula is not counting the rows with " n/a " ?
Thanks,
dani
Use set analysis to remove out the n/a
=count({<Id-={'n/a'}>}DISTINCT(Id))
hope that helps
Joe
Use set analysis to remove out the n/a
=count({<Id-={'n/a'}>}DISTINCT(Id))
hope that helps
Joe
Hello Dani,
do you have the 'n/a' in the Id field? Than it is:
=count({<Id=Id-{'n/a'}>} distinct Id)
Hope ths helps
Tobias
excellent, thanks Joe
Hi Dani,
use below expression:
=Count({<Id={"*"}-{'n/a'}>}DISTINCT(Id))
Thanks
Sabal
No worries, it is probably a good idea to have a look at these links for a more in depth overview of set analysis
Set Analysis: syntaxes, examples
hope that helps
Joe