Hi @KarCz,
At first sight I would also not expect a blank value error. Make sure that the function is not written anywhere else by leveraging the Power Apps Search pane.
To avoid an error pop-up, you could give the following adjustment a try:
If(
!IsBlank(ThisItem.'Expert Name'.Email),
If(
//Check whether the user has a picture, default to false if an error occurs
IfError(
Office365Users.UserPhotoMetadata(ThisItem.'Expert Name'.Email).HasPhoto,
false
),
Office365Users.UserPhotoV2(ThisItem.'Expert Name'.Email),
'blank-person'
),
'blank-person'
)
However, as said - I would not expect any errors.
You may want to give the following a try:
- Make sure the latest app version is published - should you test this in Play Mode
- Should you test in Edit Mode: try saving, closing and reopening your app
- Try to use a different browser or guest mode
- Clear your browser cache
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!