How to trap errors when loading a data source.
I am creating a function to display a collection retrieved from a table by ClearCollect() on the screen or insert it into another table.
Is there any way to detect an error in ClearCollect() or Collect()?
The method of using IsEmpty() or CountRows()=0 cannot determine if the read failed, because the state where the result of ClearCollect is zero is sometimes correct.
It would be very nice if there was a simple way to nest a function into IsError to catch it, for example, as follows
IsError(Patch())
Thank you for your answer.