Hello
We have some functionality built into the app which sends an email to the users manager. But we've found that in some cases the user doesn't have a manager populated in their profile. When using the PowerApps app on a mobile the user gets a huge pink banner displaying the 404 error from the Office365Users connector. Is there a way of capturing this error and showing a more user friendly message?
I've tried the following but it doesn't capture the error
IfError(
Set(
varTest,
Office365Users.Manager(Office365Users.MyProfileV2().mail).Mail
),
Notify("Your staff record dosen't have a manger assigned")
)
Thanks
Solved! Go to Solution.
Hi @StuPower
This is not working because Formula Level Error Management is turned off in your app as experimental feature. If you will enable it, then the issue will be resolved.
File -> Settings -> Advanced Settings -> Experimental Features -> Formula Level Error Management -> Turn it on.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Hi @StuPower
This is not working because Formula Level Error Management is turned off in your app as experimental feature. If you will enable it, then the issue will be resolved.
File -> Settings -> Advanced Settings -> Experimental Features -> Formula Level Error Management -> Turn it on.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!