For an assigned Patch(), Is it more reliable to test the variable for errors or the patched table for errors
Example:
Set(result, Patch('table', ...));
What is the better Error handlingcheking Method??
If( IsBlankOrError( result ), Notify("Error", Error), Notify("Success", Success)
--or--
If( !IsEmpty( Error( 'table' ) ), Notify("Error", Error), Notify("Success", Success)

Report
All responses (
Answers (