I have Gallery1.
Gallery1 has ComboBox1.
When I have ComboBox1 configured as follows the users can see ALL items in the Staking collection in the ComboBox list.

I have the need to filter the content of ComboBox1 by three parameters -
1. Role: Technician or Contractor
2. Cost Type: 'Subcontractor' or 'In House'
3. Location
When I use the following in the items of the ComboBox1 I can see all items sorted as desired above.
If(Role_DataCardValue.Text = "Contractor",Filter(Staking_Collection,Cost_Type = "Subcontractor" && Title =
Location_Dropdown.Selected.Value).Billing_Unit,
If(Role_DataCardValue.Text = "Technician",Filter(Staking_Collection,Cost_Type = "In House" && Title =
Location_Dropdown.Selected.Value).Billing_Unit))

However, the other users only see an empty expanded ComboBox1.
What am I missing?
Why does Staking_Collection.Billing_Unit allow the other users to see ALL items in the collection, but the filter formula only shows them the empty box below?
