In the case of phases, the Get Limits table also needs a column for your phase variable. Here is an example of a Get Limits data table with phases for the sample data table Diameter.jmp.
New Table( "Untitled 7",
Add Rows( 19 ),
New Column( "_LimitsKey",
Character,
"Nominal",
Set Values(
{"_KSigma", "_Alpha", "_Sample Size", "_Std Dev", "_Mean", "_LCL",
"_UCL", "_Std Dev", "_Mean", "_LCL", "_UCL", "_Std Dev", "_AvgR",
"_LCLR", "_UCLR", "_Std Dev", "_AvgR", "_LCLR", "_UCLR"}
)
),
New Column( "DIAMETER",
Numeric,
"Continuous",
Format( "Best", 12 ),
Set Values(
[3, 0.00269979606326021, 6, 0.293126882526161, 4.35739841666667,
3.99839277062575, 4.71640406270759, 0.207693678143616, 4.31985041666667,
4.06547864953982, 4.57422218379352, 0.293126882526161, 0.7429045, 0,
1.48865418833487, 0.207693678143616, 0.5263815, 0, 1.0547789448536]
)
),
New Column( "Phase",
Character,
"Nominal",
Set Values(
{"", "", "", "1", "1", "1", "1", "2", "2", "2", "2", "1", "1", "1", "1",
"2", "2", "2", "2"}
)
)
)