This is my code. Basically I have 3 more dropdowns that the choices for the office location is going to be based on the other 3 selected value but I want to add Any - no preferred location to my office location drop down.
this is the code that is not working.
ClearCollect(
OfficeLocationCollection,
Distinct(
Filter(
'DataSource',
ONE= DataCardValueONE.Selected.Value &&
TWO= DataCardValueTWO.Selected.Value &&
THREE= DataCardValueTHREE.Selected.Value
),
'Office Location'
)
);
Collect(
OfficeLocationCollection,
{ OfficeLocationLabel: "Any - No preferred location" }
);
it looks like this for my new formula. Its blank
