Hi Experts.
I have a desk booking application template from Aprill Dunnam. I wanted to convert it to book cars by the hour, but I can't show the cars available after a given hour in the gallery. Do you know how to fix it?
This is oryginal code:

I tried modifying it this way:
Filter(
Sort(col_Desks, Title);
Not(
Title in 'Desks Reservations'.DeskText
) &&
(
IsBlank(LookUp(
'Desks Reservations',
DeskText = col_Desks.Title &&
(
('Check Out From' >= startTime && 'Check Out From' <= endTime) ||
('Check Out To' >= startTime && 'Check Out To' <= endTime) ||
('Check Out From' <= startTime && 'Check Out To' >= endTime)
)
))
)
)
but it still doesn't work, any suggestions?
Thanks 🙂