Hi Everyone,
@PowerAddict @mdevaney and others, is it possible to set notification messages to come out when there is an error on selecting an button. I tried Notify function. But not sure how to set it to come out only when there an error, otherwise to have success message.
e.g On patch function we get server response error (ETAG) time to time. In this case how can we apply this notify()
Osmand
Solved! Go to Solution.
Hey @OsmandFernando
To configure this, you can use the IfError function as:
Since, this is an experimental feature, you need to turn on the Formula-level error management feature.
App Settings -> Advanced Settings -> Formula-level error management -> Enable
Now, use the expression as:
IfError(Patch(...);Notify("Data Saved!",NotificationType.Success),Notify("There is an error.",NotificationType.Error))
Here, the first argument should be the action that you need to check for an error.
For more details, please refer: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-iferror
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!
Hey @OsmandFernando
To configure this, you can use the IfError function as:
Since, this is an experimental feature, you need to turn on the Formula-level error management feature.
App Settings -> Advanced Settings -> Formula-level error management -> Enable
Now, use the expression as:
IfError(Patch(...);Notify("Data Saved!",NotificationType.Success),Notify("There is an error.",NotificationType.Error))
Here, the first argument should be the action that you need to check for an error.
For more details, please refer: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-iferror
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!
User | Count |
---|---|
263 | |
110 | |
92 | |
55 | |
41 |