You were a bit unclear as to how your specification limits are stored. You mention that your data is stacked which I assume means you are using a By variable in your analysis. Below is some general IR chart code that you can use with a by variable and specification limits.
Control Chart(
SendToByGroup( {:Label == "height"} ),
Group Size( 1 ),
KSigma( 3 ),
SendToByGroup(
{:Label == "height"},
Chart Col(
:Data,
Individual Measurement,
Moving Range
),
Capability(LSL(50),Target(60),USL(70));
),
SendToByGroup(
{:Label == "weight"},
Chart Col(
:Data,
Individual Measurement,
Moving Range
),
Capability(LSL(60), Target(70), USL(80))
),
By( :Label )
);