cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar

Group Age Column into Categories

Hello.. I'm new to JMP and I have a basic question.

I would like to create a new column that groups customer's ages into age groups:

Age range 0 <34.9 should be labeled <35

Age range 35.0-44.9 should be labled 35-44

Age range 45.0-53.9 shoulf be 45-54

How do I write the formula and reflect the labels?

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
KarenC
Super User (Alumni)

Re: Group Age Column into Categories

If(:AGE < 35, "35", 35 <= :AGE < 45, "35 - 44", "45 -54")

You should be able to cut and paste this into a column formula.  The :AGE is the name of the column for age so you may need to update that based on your table.  Once you have the formula in place you can click on the "AGE" in the formula and then select the correct column from the column list in the formula editor. 

View solution in original post

1 REPLY 1
KarenC
Super User (Alumni)

Re: Group Age Column into Categories

If(:AGE < 35, "35", 35 <= :AGE < 45, "35 - 44", "45 -54")

You should be able to cut and paste this into a column formula.  The :AGE is the name of the column for age so you may need to update that based on your table.  Once you have the formula in place you can click on the "AGE" in the formula and then select the correct column from the column list in the formula editor.