
;D..plz help me...
I wanna make a multiple filters on share point app.
for example,
Below table is a sheet in Share Point
Date | Name | Type |
22-04-04 | A | Pm |
22-03-04 | B | Am |
22-03-04 | E | Pm |
22-03-04 | F | Rest |
22-04-04 | C | Rest |
22-03-04 | D | Rest |
in this case, I'll make below App.
plz help me T-T
You can try with 3 flexible height galleries, one for each column with this code on Items property
For example, for the first column:
Filter(
YourList,
And(
Date = DateValue(TextInput.Text),
Name = "PM"
)
)