cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

How to Configure Variables Only Once for Application Across Multiple Formulas Within a Single Data Table

How to Configure Variables Only Once for Application Across Multiple Formulas Within a Single Data Table

 

For example, in Table 4.5.jmp:

let A=4.54766666666667 + 0.0566666666666667 * :Speed + -0.605 * :Pressure,

let B=4.44891666666667 + 0.0766666666666667 * :Speed + -0.605 * :Pressure

let C=6.66193304843305 + -0.00789173789173778 * :Speed + -0.605 * :Pressure.

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: How to Configure Variables Only Once for Application Across Multiple Formulas Within a Single Data Table

If you wish to repeat a formula, create a formula column and refer to that. If you wish to repeat a constant create table variable (or column with the value). To use table variable in a formula you reference it like you would a column so in this case :A

-Jarmo

View solution in original post

3 REPLIES 3
jthi
Super User

Re: How to Configure Variables Only Once for Application Across Multiple Formulas Within a Single Data Table

You can use table variables or create columns with those values and use them.

-Jarmo
Rily_Maya
Level III

Re: How to Configure Variables Only Once for Application Across Multiple Formulas Within a Single Data Table

As shown in the figure, there is an error.
Why?1.png

jthi
Super User

Re: How to Configure Variables Only Once for Application Across Multiple Formulas Within a Single Data Table

If you wish to repeat a formula, create a formula column and refer to that. If you wish to repeat a constant create table variable (or column with the value). To use table variable in a formula you reference it like you would a column so in this case :A

-Jarmo

Recommended Articles