I have a dataset that looks like this:
| ID | Property | Status |
| 1 | red | A |
| 2 | blue | A |
| 3 | yellow | B |
| 4 | red | C |
| 5 | blue | D |
| 6 | yellow | D |
I want to count the number of rows that contains either A, B or C and show that count in my app.
CountIf(dataset; Status = "A" || Status = "B" || Status = "C")
I have tried this and a number of variations, but nothing works. This formula tells me CountIf is not supported by this connection.