Forum Discussion
- _anomDiebolt_Qrew EliteCount([field1], [field2], [field3])
- QuickBaseCoachDQrew CaptainYou can use the count function to count "trues". There is a question as to how to deal with blanks. if the fields are NOT set to treat blank as zero (ie to treat them as null)
Count(
not IsNull([Field 1]),
not IsNull([Field 2]),
...
not IsNull([Field 10]))
If they are set to treat blank as zero then
Count(
[Field 1]<>0,
[Field 2]<>0,
...
[Field 10]<>0) - RajHelaiyaQrew CaptainThanks this worked just fine!