Hi
To display images from a multi-select Person type column in your PowerApps gallery,I follow these steps:
If(
ThisItem.LT_Owner.SelectedItems.Count > 0,
Office365Users.UserPhotoV2(First(ThisItem.LT_Owner.SelectedItems).Email),
// Placeholder image/error handling
)
But its showing an error
name isn't , selectedItems isn't recoginized and Inavlid use of '.'
Could anyone pleas ehelp me to fix this issue