Hello,
How to check if the user has a profile picture or not without using a connector office user. I tried with isBlank(Image11.Image) or Image11.Image=SampleImage, but is not working
Best regards,
Mihaela

Hello,
How to check if the user has a profile picture or not without using a connector office user. I tried with isBlank(Image11.Image) or Image11.Image=SampleImage, but is not working
Best regards,
Mihaela
hey @Mihaela08zl
maybe you can try this:
If(
Len(User().Image) = 0,
"<URL_of_default_image>",
User().Image
)
In this formula, replace "<URL_of_default_image>" with the actual URL or path of the default image you want to show when there is no user profile image. This code checks if the length of the string returned by User().Image is 0, which would imply that there is no image. If that's the case, it uses the default image URL; otherwise, it uses the user’s image.
Let me know if my answer helped solving your issue.
If it did please accept as solution and give it a thumbs up so we can help others in the community.
Greetings