cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm US Eastern Time.

Discussions

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

Help with an IF() statement?

I would like to use an IF() statement to assign a value to a column if another column meets a certain requirement.

Column 1Column 2
A1
B2
UNKNOWN
C3

D = 100;

IF( :Column 1 == "UNKNOWN", :Column 2 = D);

The script isn't recognizing D as the value "100". Could anyone help me out?

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Help with an IF() statement?

You just need to address it by row.


D =100;
for each Row(
      if(:"Column 1"[]=="UNKNOWN",:"Column 2"[] = D
      )
)

The other option is to create a new column with a formula.  Then your solution would work.

View solution in original post

1 REPLY 1

Re: Help with an IF() statement?

You just need to address it by row.


D =100;
for each Row(
      if(:"Column 1"[]=="UNKNOWN",:"Column 2"[] = D
      )
)

The other option is to create a new column with a formula.  Then your solution would work.

Recommended Articles