cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • Use JMP Clinical with CDISC-compliant data. Review studies, ID safety and efficacy signals & communicate findings with interactive graphics. Register to see how. Aug. 27, 2 pm US ET.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar
0 Kudos

hieght weight

 

Make a New Column next to your Column of Numbers and add this Formula  (:weight) is unique Column name.

Col Sum(:weight)

The other is to Launch Graph Builder with a Script

 

xx=colsum(:weight);
Graph Builder(
Size( 524, 492 ),
Show Control Panel( 0 ),
Variables( X( :weight ), Y( :height ), Group X( :age ) ),
Elements( Points( X, Y, Legend( 25 ) ), Smoother( X, Y, Legend( 26 ) ) ),
SendToReport(
Dispatch(
{},
 "Graph Builder",
OutlineBox,
{Set Title( "Sum of Weight: "||char(xx) ), Image Export Display( Normal )}
),
Dispatch( {}, "graph title", TextEditBox, {Set Text( "Sum of Weight: "||char(xx) )} )
)
)