I need a way to determine if any values returned from a select are blank. So far I have tried using a select statement to return the list of values that I need to check, then surrounding that in a ISBLANK(). I donโt believe this works because the ISBLANK is checking that the whole list is blank but the list returns commas for the separator and or if one value is filled in then itโs not blank. The other method that I tried was using IN(). I did IN("",Select()) and this did not give the desired behavior either. I think with this method, it was the fact that appsheet seems to have some funny interactions with blanks and true false statements.
Solved! Go to Solution.
You could have two select conditions, one that excludes empty values and one that does not. Then subtract the count of the one that excluded empty values from the count of the other one. If your value is greater than one, then your have some blanks. Hereโs an expression I tested on an app of mine:
count(select(Kankaku[Translation],true))-count(select(Kankaku[Translation],isnotblank([Translation])))
The table name is โKankakuโ and the record Iโm testing for empty values is [Translation].
User | Count |
---|---|
16 | |
8 | |
7 | |
3 | |
2 |