How to catch formula error
I would catch errors when a formula contains missing column. In the following example, a table contains 2 columns. Adding a new column that uses a non existing column, the result is missing result (correctly) and an error that block my script that I am not able to catch because try statement doesn't work. Is there a workaround for this?dt= New Table( "Test",
Add Rows( 1 ),
New Column( "A",
Num
...