Hi @PoohBear ,
I have parsed it below for ease of reference
ClearCollect(
MergedContacts,
ExecutivesImportMergedContacts.Run()
);
ClearCollect(
FilterContacts,
Distinct(
SortByColumns(
Filter(
MergedContacts,
ceo_ind="1"&&
cntc_sts_cd="ACT"||
ceo_ind="3"&&cntc_sts_cd="ACT"||
ceo_ind=" "&&
cntc_titl_nm="Vice President & General Manager"||
ceo_ind=" "&&
cntc_titl_nm="Chief Strategy Officer"&&
cntc_lst_nm="Walker"||
ceo_ind=" "&&
cntc_titl_nm="Senior VP & CBUO"||
cntc_titl_nm="President &
CEO"&&clb_cd="602"
),
"clb_cd",
Ascending
),
tgt_prtcp_id
)
)
If(
IsBlank(SearchInput.Text),
FilterContacts,
Search(
FilterContacts,
SearchInput.Text,"Result"
)
)
The reason is simple - you have wrapped the entire collection in a Distinct filter - the only output this will produce is Result.
Get rid of it and see what the search (which is quite valid) then produces.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.