Hi,
I am trying to filter a gallery with Sharepoint Source based on the Created By Column.
I want to have a combo box that displays a shortened version of the Display name but search by full display name.
Combobox is taken care of by the following in the Items section
Sort(Distinct(SharepointList,Left('Created By'.DisplayName,Find(" ",'Created By'.DisplayName)-1)),SortOrder.Ascending)
Im struggling to nail the filter function & would appreciate any assistance.
My attempt has been
Filter(Collection3,'Created By'.DisplayName = Combobox1_1.SelectedItems)
Thanks in advance
Todd