Hello,
I've found a very strange bug with the IfError function. To make it easy to explain and understand, you can test it with the following formula in the OnSelect event of a Button :
ForAll(
Sequence(
1,
1
),
IfError(
1 / 1,
Notify(
ThisRecord.Value;
Error,
1000
),
Notify(
ThisRecord.Value,
Information,
1000
)
)
)
It should display a notification with the text "1". Whereas, it displays the following error message "An error has occured".
More generaly, it seems that the DefaultValue of the IfError function can't access the value from a ForAll expression or a With expressions. Have had issues for both of them.
Did you have that same issues ?
Thanks