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.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
Lourdes
Level II

Formula does not apply to the column

I have this table, and I want the average of the column EC(mS/cm) on the column next to it, group by name.

Screenshot 2026-03-20 114153.png

 

I used this formula yesterday but today it does not work when I apply it to the column.

If( Row() == Col Min( As Column( "EC (mS/cm)" ) << By( :Name ) ),
Col Mean( As Column( "EC (mS/cm)" ) << By( :Name ) ),
.
)
 
Thank you in advance!
4 REPLIES 4
jthi
Super User

Re: Formula does not apply to the column

If(Row() == Col Min("EC (mS/cm)"n, :Name),
	Col Mean("EC (mS/cm)"n, :Name)
);
-Jarmo
Lourdes
Level II

Re: Formula does not apply to the column

It does not apply the formula

jthi
Super User

Re: Formula does not apply to the column

Is your formula supressed?

-Jarmo
Lourdes
Level II

Re: Formula does not apply to the column

I used this one and it worked: 

If(

   Row() == Col Min( Row(), :Name ),

       Col Mean( :"EC (mS/cm)", :Name ),

   .

)

Recommended Articles