Hi @TechNewbie ,
Could you please share a bit more about your scenario?
Do you want to show only available room timeslots for booking for a selected Room in your Gallery?
Do you add another list to list all avaialble timeslots records?
Further, could you please share more details about the formula you typed within the Rooms Gallery?
I assume that you add another list to list all available timeslots records for each ROOM, is it true? Based on the needs that you mentioned, please consider take a try with the following workaround:
Set the Items property of the Timeslots Gallery to following formula:
Filter(
'Your Timeslots List',
Not(
Text(TimeslotsColumn) in Concat(Filter(RoomDetails, Room_Name = Gallery_SelectRoom_2.Selected.Result), StartTime & ";")
)
)
Note: The TimeslotsColumn represents the column in your 'Your Timeslots List' to store the timeslots value, e.g. 7:00:00 AM, 7:30:00 AM, ... 3:00:00 PM, 3:30:00 PN, ...
Please consider take a try with above solution, check if the issue is solved.
Best regards,