I have a combobox representing Locations with this formula for the Items:-
If(
IsBlank(DashBoardStreetComboBox_1.Selected),
Sort(
Distinct(
colOptionsForChoices,
'Location Name'
),
ThisRecord.Value,
SortOrder.Ascending
),
Filter(
Locations,
StreetTitle = DashBoardStreetComboBox_1.Selected.Value
).Title
)
in other word if the user does not select any street, to show all the Locations from the colOptionsForChoices collection, if the user select a street to only show the location related to the street.. the above formula is not raising any error. but when i tried to select the selected value for the Location combobox, i got this error:-

any advice