Hi @Fedir_Redko ,
Could you please share a whole screenshot about your app's configuration?
Could you please share a bit more the 'Assigned to' column? Is it a Person column, which has enabled "Allow multiple selections" option?
Where do you put your Label? Within a Gallery?
Based on the needs that you mentioned, I have made a test on my side, please take a try with the following workaround:
Set the Text property of the Label (LabelValueHover_2) to following:
If(
!IsBlank(SelectedPerson),
First(SelectedPerson.'Assigned to').DisplayName,
First(First(Filter(CreateTaskList, ID = ThisItem.ID)).'Assigned to').DisplayName
)
Set the OnSelect property of the Label (LabelValueHover_2) to following:
UpdateContext({
HidePeopleGallery: false,
IsShowPeopleDetails: false,
SelectedPerson: Blank() /* <-- Add this formula */
})
Set the OnVisible property of the current screen (which contains the Gallery ) to following:
UpdateContext({SelectedPerson: Blank()})
Best regards,