Hi everyone,
I'm struggling with the following problem:
I have a table which looks like this:
ID | Name | Value | Status |
| 1 | Blue | 75 | Success |
| 2 | Green | 22 | Fail |
| 3 | Red | 12 | Success |
| 3 | Red | 20 | Success |
| 3 | Red | 16 | Success |
In my gallery, I'm using the following code on the Items property to get a list of names of the distinct ID's:
ForAll(
Distinct(DataSource, ID),
LookUp(DataSource, ID= Result)
)
This results in a gallery as such:
However, I would like to also filter this gallery on the Status column, only displaying the records that have the Status 'success'.
How do I combine a Filter statement with my code above?
Thank you in advance!