I am trying to have a Col List Box to select specifications of a product. When running by itself, the Col List Box works fine, however when I try to add a pareto plot to the same window as a reference for which parts I should or should not pick from the Col List Box, it no longer sends the data selected. I tried with an H List Box as well for the pareto and a separate button to force the desired result but it still had issues. Any help would be greatly appreciated.
GraphingTable = Open( "Vinyl Data.jmp");
//Select the Specs you want to compare by using a COL LIST BOX
ListNumericCols = GraphingTable << Get Column Names(numeric);
show (ListNumericCols);
SelectCpkSpecs = New Window("Select Specs for analysis", << Modal, << return result,
Graphing Table << Pareto Plot( Cause( :"Pass/Fail"n ) );
CpkSpecs = Col List Box (<< Set Items (ListNumericCols))
);
CpkSpecNames = SelectCpkSpecs["CpkSpecs"];
show (CpkSpecNames);
Josh