How do I close a report window?
Is there a way to close a pareto plot window by referencing the window or report name? I'm creating a script that generates a pareto plot. Prior to generating the plot though, I want to close any prior instances of the plot. To do this, I'm trying the following: dt = Current Data Table();
tablename = dt << Get Name;
Try(Close(tablename || " - Pareto Plot", NoSave)); //Attempt to close report
...