
Hi there,
I have a Gallery which displays values depending on a combo search box.
How can I amend this Items code so that the resulting entries in the gallery are sorted by Reservation Date in ascending order?
Filter(LDN_Desk_Reservations, 'LDN Desk Reservation Date' >= Today() && 'LDN Desk Reserved For' in ComboBox1_1.SelectedItems.DisplayName)
Thanks
K.
Hi @Kosenurm ,
This should do it
Sort(
Filter(
LDN_Desk_Reservations,
'LDN Desk Reservation Date' >= Today() &&
'LDN Desk Reserved For' in ComboBox1_1.SelectedItems.DisplayName
),
'Reservation Date'
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps