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
GroupSquareWolf
Level III

Exclude data in formula

I found that when a row is Hide and Excluded, the data is still being used by a formula in another column.

Here is an example, Column2 formula is Col Maxium (:Coumn 1), row 4 is excluded and hidden, but the data is still being used by the formula in Column 2. 

 

How to exclude data from row 4 so that it is not used by the formula in Column 2? 

GroupSquareWolf_0-1655911585163.pngGroupSquareWolf_0-1655911585163.png

 

 

4 REPLIES 4
jthi
Super User

Re: Exclude data in formula

It might sometimes be a bit formula/function dependent but in this case adding Excluded() to grouping should work

jthi_0-1655912148378.pngjthi_0-1655912148378.png

 

Col Max(:Column 1, Excluded())
-Jarmo
GroupSquareWolf
Level III

Re: Exclude data in formula

Col Maximum( If( !Excluded(), :Column 1 ) )

Thank you for the hint. Got the code. 

hogi
Level XIII

Re: Exclude data in formula

Many thanks for highlighting this topic!
I also noticed it some while ago - and was surprised ...

 

Good that there is such an easy solution to get what you expect.

 

Does anybody know: Is the "exclude" neglected in the standard calculation due to speed reasons (no re-calculation with every change of the row "exclude" states)?

jthi
Super User

Re: Exclude data in formula

Not exactly the answer to @hogi's question but might be a good read related to this Col Functions and Row States . I think there has been some additional documentation related to this in release notes or in community, but I cannot find them now.

Also this might be helpful sometimes Col Stored Value(<dt>, col, <row>) 

-Jarmo

Recommended Articles