I am fairly new to powerapps, and I need to filter a collection based on a selected item. The Collection I am using is a clone of a sql table, and I have a working filter for the sql table.
*This works*
Filter(
'[dbo].[equipment2]',
location = Text(ItemSelected.first_name) & " " & Text(ItemSelected.last_name))
*This doesn't* (This is my collection)
Filter(
EquipmentMaster,
location = Text(ItemSelected.first_name) & " " & Text(ItemSelected.last_name))
Is there a different syntax when working with collections? Thank you for the help