Hi,
I'm using Office365Users.SearchUser in a dropdown box to search over user accounts, the issue is it brings back all email accounts. I only want active users from a certain domain, e.g. contoso.com. The query below does the opposite... need some help.
If(!IsBlank(Trim(ComboBox1.SearchText)),Filter(Office365Users.SearchUser({searchTerm: Trim(ComboBox1.SearchText), top: 15}),!("@contoso.com" in Mail)))
Any ideas on how to construct the filter to only include contoso.com?