On a powerapps form, I have a dropdown searching the users. I am using the following in the "Items" of the DataCardValue10
Filter(
Office365Users.SearchUserV2(
{SearchTerm:Trim(Self.SearchText),isSearchTermRequired:false}
).value,
AccountEnabled = true, !IsBlank(JobTitle))
this shows only the users up to names beginning "I" like Ian, and I also cant search anyone after this.
Has anyone else encountered this issue and found a solution?
I have tried the following but got the exact same results
Filter(
Office365Users.SearchUserV2(
{SearchTerm:Trim(Self.SearchText),isSearchTermRequired:false,top:99999}
).value,
AccountEnabled = true, !IsBlank(JobTitle))