Hi @Kishan2 ,
If this should be a single select combo box, you should not need to do this (what type of field is 'Name (Title)'
Concat(
cmbAssignmentAS.SelectedItems,
' Name (Title)'
)
If this should be single select, change it back to that and try this in the gallery Items
SortByColumns(
Filter(
Assignments,
StartsWith(
'Assignment Name',
txtSearchboxAs.Text
) &&
Len(cmbAssignmentAS.Selected.ID) = 0 ||
Title=Text(cmbAssignmentAS.Selected.ID)
),
"AssignmentName",
If(
Sortdescending1,
Descending,
Ascending
)
)
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.
Visit my blog Practical Power Apps