it takes 5 to 10 to look up the names, is there a way to speed search ?
am using this code Choices([@sharepointListNameRandom].Profile) on the datacard, editform and datacard type person

it takes 5 to 10 to look up the names, is there a way to speed search ?
am using this code Choices([@sharepointListNameRandom].Profile) on the datacard, editform and datacard type person
Hi @warsongg00 ,
How many people are in your organization?
To speed up the Office365 search user function, try to collect all Office365 users to the collection at the start of app.
1. collect all Office365Users to the collection, set the following formula to OnStart of app.
ClearCollect(coluser,Office365Users.SearchUser({searchTerm:"",top:500}));2. set Items property of Combo box(that data card) as below.
coluser
3. set update property of datacard as below.
{Claims:"i:0#.f|membership|" & DataCardValue1.Selected.UserPrincipalName,Department:"",DisplayName: DataCardValue1.Selected.DisplayName,Email: DataCardValue1.Selected.UserPrincipalName,JobTitle:"",Picture:""}Hope this can help.
Best regards,
Sik