How to close the correct tables with "On close" when running the same script multiple times?
Hello, I have an add-in outputting a graph with several tables hidden in the background.Upon closing the window I use the "On Close" function to close related data tables, like this: New window() << On close(
Close(TableA, nosave);
Close(TableB, nosave);
) ;
The problem is if I run the script twice, TableA of the first run will be overwritten during the second script execution.I have tri...