Hi @ElMeSaFeR ,
Could you please share a bit more about your scenario?
Do you mean that you could see the value within the two Labels sometimes, somr other times not?
Currently, there is an known issue with the the Office365Users.SearchUser() function, it could only retrieve 999 records at most once time.
Please consider modify your formula as below:
Set the Items property of the ComboBox to following:
Office365Users.SearchUser({searchTerm: ComboBox1.SearchText, top:999})
set the Primary text property and SearchField property to following:
DisplayName
Set the Text property of the Department Label to following:
If(
IsBlank(ComboBox1.Selected),
"No User Selected",
Office365Users.ManagerV2(ComboBox1_1.Selected.Mail).department
)
Set the Text property of the Manager Name Label to following:
If(
IsBlank(ComboBox1.Selected),
"No User Selected",
Office365Users.ManagerV2(ComboBox1_1.Selected.Mail).displayName
)
Please consider take a try with above solution, check if the issue is solved.
Best regards,