Thank you for the prompt reply Warren. It is always nice to hear from you 🙂 I made the changes you suggested, but PowerApps isn't falling in line yet so here are some more screenshots.
I changed the column setting.

Here is a better snapshot of the data card settings. As you can see, I'm getting errors.

Here is a snapshot of the combobox values. the DefaultSelectedItems is Parent.Default. I tried ThisItem.Track as well, but this didn't resolve the errors.

My gallery Items formula also broke at the Track part of the formula. PowerApps doesn't like Track.Value=varTab anymore. This formula is working with a single selection.
SortByColumns(
Filter(
'Term Decoder',
(StartsWith(
'OCF Acronym',
txtSearchBox.Text
) || StartsWith(
'OCF Term',
txtSearchBox.Text
) || StartsWith(
'EBS Acronym',
txtSearchBox.Text
) || StartsWith(
'EBS Term',
txtSearchBox.Text
)) && ((Coalesce(
varTab,
"All Tracks"
) = "All Tracks") || Track.Value = varTab)
),
"EBSAcronym",
If(
SortDescending,
SortOrder.Descending,
SortOrder.Ascending
))
Let me know if I left anything out. Thank you, Teresa