Hello Everyone,
Good day!
The issue was on my combo box user search field. When I type a whole email address like raj.t.1@gmail.com it correctly found and display the name in combo box. But when I tried to type raj.t.1 the combobox search field will default to [City].
/**Default Selected Items: **/
If(
!IsBlank(gvCurrentRequestContactApprovers.'Initiative Leader'),
Office365Users.SearchUserV2(
{
searchTerm: gvCurrentRequestContactApprovers.'Initiative Leader'.Email,
top: 1
}
).value
)
/**Items: **/
If(!IsBlank(cmbx_contact_il.SearchText), Office365Users.SearchUserV2({searchTerm:cmbx_contact_il.SearchText,top:10}).value, Blank())
I would like to know how to fix this and what I did wrong. Thanks.