Hi,
I'm trying to set up a filter/search for Office365 users from a specific country or company and display those in a gallery. Is this possible?
In this code I'm filtering on country/company/name depending on what radiobutton the user selected (and only if the company name is specified). The first filter works, the country or company filter I can't get to work.
If(Radio1.Selected.Value="Name"; Filter(Office365Users.SearchUser({searchTerm:SearchBar.Text}); Not(IsBlank(CompanyName)));
If(Radio1.Selected.Value="Country"; Filter(NO IDEA HERE({searchTerm:SearchBar.Text}); Not(IsBlank(CompanyName)));
If(Radio1.Selected.Value="Company"; Filter(NO IDEA HERE({searchTerm:SearchBar.Text}); Not(IsBlank(CompanyName))))))Thanks in advance!