Hello!
I have a SharePoint list that tracks checking in/out vehicles for my company. I'm trying to build a gallery that shows which vehicles are available to check out.
Important SharePoint list structure considerations:
Sharepoint List name = Vehicle Tracker
Column Name in List = Vehicle ID Number, Identifier = IdentificationNumber, Type = Choice
Column Name in List = Vehicle Status, Identifier = EquipmentStatus, Type = Choice
My current formula for my gallery is:
Last(Filter('Vehicle Tracker', 'Vehicle Status'.Value=TextInput2.Text))I have a TextInput field that is hidden and says "Checked In", and it shows a vehicle as it should, but the problem is that it's only showing the last vehicle that was checked in. I need it to show each vehicle that's available as "Checked In" so users can select it for Check Out.
I hope this makes sense. Thank you ahead of time for your responses!