Hello!
I'm trying to filter a PowerApp dropdown based on two different SharePoint list values,
One is a List with whether or not a vehicle is "available" which I currently am using for the default filter for the dropdown:
Filter('Vehicle Information', Status.Value="Available")
I need to add another filter from another SP list that will track whether or not the vehicle is "checked in" meaning available to be checked out by users. This SP list is essentially a running list of who has checked in/checked out the vehicles and at what time, but I cant seem to figure out how to add both filters to my dropdown to get them to work in combination with each other.
End goal is to show which vehicles are "available" from SP list 1 as well as "checked in" from SP list 2.
My SP List names are:
SP List 1: Vehicle Information
SP List 2: Vehicle Tracker
Important Columns and Names:
SP List 1: "Status"
SP List 2: "Vehicle ID Number" (Field=IdentificationNumber), "Vehicle Status: (Field=EquipmentStatus)
Anyone able to assist me? I'm not sure if adding another Filter is correct, or if it needs to be distinct or last - although I'm sure there's multiple ways to do this... I just cant figure it out for some reason 😞
Thank you!