Hello everybody!
I am trying to use a combo-box to create a People-Picker from a specific group using O365 Users as a connector.
If the group of users in my O365 Users is called "testGroup" , AND my combo-box for my people-picker is called "testComboBox" , would this be the correct syntax for code? There are no errors when I input this code into the "Items" property, but the combo-box isn't pulling up any results in my form. Thank you!
Sort(
Office365Users.SearchUser(
If(
IsBlank(testComboBox.SearchText),
{searchTerm: "testGroup"},
{searchTerm: testComboBox.SearchText}
)
),
Surname
)
--------
I replaced the testComboBox I used as a parameter within "searchTerm" with empty parentheses (which should pull up all users within the O365 Group), but it looks like I got results without detail when I run the app:
