cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use JMP Live to centralize and share reports within groups. Webinar with Q&A April 4, 2pm ET.
Choose Language Hide Translation Bar
View Original Published Thread

If Statement to add a yes/no column

ChrisNally
Level II

Good Morning

                         Any help here would be much appreciated. I am trying to add a new column that will add either a yes or a no based on a Bx no. range

So in table below any Bx No before 10732 would return a "Yes" in the 0.3mic column and any Bx No after would return a "No".

Thanks in advance.

 

Chris

      

C_LOT_NAMEPRODUCTSAMPLE_TYPEAverage Pigment Strength0.3mic filtered
10128CYAN_J2VLOT_FINISHED  
10128CYAN_J2VLOT_FINISHED10.14 
10200CYAN_J2VLOT_FINISHED12.26 
10200CYAN_J2VLOT_FINISHED  
10240CYAN_J2VLOT_FINISHED12.06 
10240CYAN_J2VLOT_FINISHED  
10377CYAN_J2VLOT_FINISHED11.965 
10487CYAN_J2VLOT_FINISHED12.145 
10487CYAN_J2VLOT_FINISHED12.075 
10634CYAN_J2VLOT_FINISHED  
10634CYAN_J2VLOT_FINISHED12.195 
10682CYAN_J2VLOT_FINISHED12.035 
10697CYAN_J2VLOT_FINISHED12.1 
10732CYAN_J2VLOT_FINISHED12.13 
10733CYAN_J2VLOT_FINISHED12.265 
10871CYAN_J2VLOT_FINISHED12.155 
10872CYAN_J2VLOT_FINISHED12.155 
10873CYAN_J2VLOT_FINISHED12.035 
10874CYAN_J2VLOT_FINISHED12.145 
1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User


Re: If Statement to add a yes/no column

Try this

dt << New Column( "0.3mic filtered ",
	Character,
	Nominal,
	Formula(
		If( Num( :C_LOT_NAME ) < 10732,
			"YES",
			"No"
		)
	)
);
Jim

View solution in original post

3 REPLIES 3
ChrisNally
Level II


Re: If Statement to add a yes/no column

 I tried this but only get No returned in the column:

 

 

dt << New Column( "0.3mic filtered ",
    Character,
    Nominal,
    Formula(
        If(
            :C_LOT_NAME == "<10732"
        ,
            "YES",
            "No"
        )
    )
);

 

txnelson
Super User


Re: If Statement to add a yes/no column

Try this

dt << New Column( "0.3mic filtered ",
	Character,
	Nominal,
	Formula(
		If( Num( :C_LOT_NAME ) < 10732,
			"YES",
			"No"
		)
	)
);
Jim
ChrisNally
Level II


Re: If Statement to add a yes/no column

Hi

     Thank you very much, this worked well. Your help is much appreciated.

 

Regards

Chris