I am trying to play with IfError function. When the fallback is not string with non numerical value, ite gives empty value.
I am not clear with the documentation: https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-iferror
Could you explain why the fallback in first and second is giving value but not the third? Am I missing something?
IfError( Value( "13a"), "6" ) => 6
IfError( Value( "13a"), 9 ) => 9
IfError( Value( "13a"), "error" ) => Empty label WHY?
Thank you in Advance.