cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

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

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.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.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.png

 

-Jarmo
HSS
HSS
Level IV

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

Yes it worked. Thanks Jarmo

Recommended Articles