Hi,
I have a ComboBox1 who's Items property is set to the following;
Choices([@'Share_Point_List_1'].'Name')
This code successfully brings in all the items in column 'Name' from 'Share_Point_List_1'. The column 'Name' is a look up column in SP.
I then have a Gallery called 'Gallery_MasterList' who's 'items property is set to the following;
Filter('Share_Point_List_2', 'Name' = ComboBox1.Selected.Value)
So this is filtering Share_Point_List_2 and its column 'Name' with the value selected from the 'ComboBox1' above. The column 'Name' in Share_Point_List_2 is of text format.
Here is what I would like to achieve;
- Expand the filter above so that it filters on 'Name' column but returns the value of another column called 'SME'. The 'SME' column is of Person type column
- Take that persons name and use it as search text in Office365Users.SearchUser
I have another Combobox set up with the following parameters;


So, in 'DefaultSelectedItems' property the name of the SME is passed to it. It would be great if this can be done and appreciate any help.
Thanks