cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
MDB9933
Level I

How do I combine two columns one character and one numeric?

 
3 REPLIES 3
David_Burnham
Super User (Alumni)

Re: How do I combine two columns one character and one numeric?

You can select the two columns, right-click to create a new formula column:

 

David_Burnham_0-1656682422758.png

 

-Dave
MDB9933
Level I

Re: How do I combine two columns one character and one numeric?

I am trying to put the time column and Seed# column together and when I do what you suggest it messes up the time input (see Concatenate column). 

 

MDB9933_0-1656695821820.png

 

txnelson
Super User

Re: How do I combine two columns one character and one numeric?

Your Time column is a JMP Time column, which is measured in the number of seconds since midnight.  Thereroe, you need to convert it to a meaningful/displayable value.  This formula does it pretty well.

format(time,"hr:m") || " " :seed #

"12:00 21"

Jim