So I'm trying to filter the items in a gallery but for some reason the early entries only show up when I have an If statement in it?
Filter(
DESK_BOOKINGS,
BookingDate = DatePicker1.SelectedDate
)
doesn't return early entries but
Filter(
DESK_BOOKINGS,
If(
IsBlank(DatePicker1) = false,
BookingDate = DatePicker1.SelectedDate,
BookingDate = DatePicker1.SelectedDate
)
)
this code does. it's the same whether the If statement goes through the true or else statements
Ultimately I'm going to use a collection instead of pulling direct from the sharepoint list which shouldn't have this issue but I'm just very confused why the second code works while the first doesn't when they basically do the same thing