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.

Discussions

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

How to parse a formula / comparison from a column and apply on other column

Hi All,
I need to apply formula "Expected values" on my "Results[in%Format]" and store the Yes(1) or No (0) in my results column. I have tried different version of Eval()  and Parse() with no success.

Any help please.

 

HSS_0-1674330936955.pngHSS_0-1674330936955.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: How to parse a formula / comparison from a column and apply on other column

First build a string and then use Eval(Parse())

Eval(Parse(Char(:"Results[in%Format]"n) || :Expected Values))

jthi_0-1674332472261.pngjthi_0-1674332472261.png

 

-Jarmo

View solution in original post

2 REPLIES 2
jthi
Super User

Re: How to parse a formula / comparison from a column and apply on other column

First build a string and then use Eval(Parse())

Eval(Parse(Char(:"Results[in%Format]"n) || :Expected Values))

jthi_0-1674332472261.pngjthi_0-1674332472261.png

 

-Jarmo
HSS
HSS
Level V

Re: How to parse a formula / comparison from a column and apply on other column

Yes it worked. Thanks Jarmo

Recommended Articles