Hi All,
Working on an internal company app and trying to ensure that users select a "desk" before moving to the next screen. Right now the way its set up is they hit a checkbox and then a continue button that will set the desk for the reservation and navigate to a confirmation screen. I need to find a way to only allow this if an item is actually selected as one user was able to make a reservation with no desk selected.
Gallery code is
Filter(Desks,Not(Title in Filter(
'Desk Reservations',
CheckOutFrom >= startTime && CheckOutTo <= endTime || CheckOutFrom <= endTime && CheckOutTo >= endTime
).DeskText))//Filter('Desk Reservations','Check Out From' >= startTime && 'Check Out To' <= endTime || 'Check Out From' <= endTime && 'Check Out To' >= endTime)
Button
Navigate(Confirm)
I have been googling this for a few weeks now and tried some various methods but no dice thus far. Any hints as to how to do this would be greatly appreciated.