Hi,
I have a gallery displaying only the name and I would also want to display Organisation underneath. The Gallery can be filtered by 4 combo boxes and I tried to change the coding from Distinct to GroupBy, but I am not sure how I can integrate the drop downs with GroupBy or whether there is another solution to just add another label underneath Name that will display the Organisation name?
This is how the code looks atm:
Distinct(SortByColumns(Filter('WEF CRM',
StartsWith(
'Full Name',
TextInput3.Text
),
IsBlank(ComboBox1.SelectedItems.Value) || IsEmpty(ComboBox1.SelectedItems) || 'Stakeholder type'.Value= ComboBox1.Selected.Value,
IsBlank(ComboBox2.SelectedItems.Value) || IsEmpty(ComboBox2.SelectedItems) || Subtype.Value= ComboBox2.Selected.Value,
IsBlank(ComboBox2_1.SelectedItems.Value) || IsEmpty(ComboBox2_1.SelectedItems) || 'Best For'.Value= ComboBox2_1.Selected.Value
), "Title", If(SortDescending1, Descending, Ascending)), 'Full Name')
