Hi all,
Currently facing an issue with an update to an app I'm trying to make.
I have a desk booking app that we are currently updating to have a live map of the office and desks.
I've added 46 icons next to each desk that will only become visible if someone that is a first aider has selected to book that desk on todays date.
For example, for Desk 46 the criteria that the formula looks for is if the DeskText field contains Desk 46, the First Aider choice field = Yes and the BookingDate is todays date, if so it should make the icon visible:
Visible = If(LookUp(DeskBookings, DeskText = "Desk 46" && FirstAider.Value = "Yes" && BookingDate = Today(), true)
This does not work and I can't figure out if it's the LookUp statement not being completed correctly, the If statement or just the entire thing is wrong.
Any help and explanation is appreciated.
Thanks all!