Hello everyone, I hope you are very well.
I wanted to request help to find the formula that solves my problem in Appsheet.
I need to fetch all the results of the sub_date column when it is not empty, and I need to fetch all the results of the state column when it has the following values: analysis, docs and when the field is empty.
It is worth clarifying that the state column has several types of extra values, which do not interest me in the formula either.
Solved! Go to Solution.
Hello, sorry for the delay, this was the solution to the problem.
AND(
ISNOTBLANK([sub_DATE]),
OR(
ISBLANK([STATE]),
IN([STATE], {"ANALYSIS", "DOCS"})
))
User | Count |
---|---|
18 | |
11 | |
7 | |
4 | |
3 |