I am trying to run a script similar to the following:
Try(
dt1 = Open(path1);
Try(
dt2 = Open(path2);
dt2 << Concatenate(dt1, "Append to first table");
,
dt2 = dt1 << Subset(All rows);
);
dt2 << Save(path2);
,
print("No dt1 found!");
);
But, when it fails to open dt2, instead of executing the subset statement, it executes the print statement.
The question is if it possible to run nested try statements.