Problem with Opening file (tried to make it a flexible dt name in JSL)
Names Default To Here(1);
//Open Data Table: Recovery_Analysis:Plate Name.jmp
Recovery_Analysis:Plate Name = Open("MY FILEPATH");
//Split data table
Recovery_Analysis:Plate Name << Split(
Split By(:Chemistry),
Split(:Concentration),
Group(:Well Id),
Output Table("Untitled 17.jmp"),
Sort by Column Property
);
//Save data table: Recovery_Analysis:Plate Name.jmp
Recovery_Analysis:Plate Name
...