Folks,
I had generated multiple plots and saved to the source table. I wanted to create another table script which combined two of the shown scripts ("Cumulative Resistivity" and "Cumulative Permeability"). This third saved script is "RP." The final objective is to consolidate the plots in a clean window which I then copy and paste into Powerpoint.
The snippet below seems to almost do what I want. With the table still open, I'm able to get a plot that combines the plots from the first two scripts. However, after closing the table and re-opening, and running "RP", I get the message shown below. Any hints on what needs to be done or is there a better way to handle this situation?
nw = Eval Expr( New Window("BR",
Lineup Box(N Col(1),
Spacing(10), dt_all << Run Script("Cumulative Resistivity"),
dt_all << Run Script("Cumulative Permeability")
)
)
);
dt_all << New Script("RP", nw) ;
Neil