cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
riksmith
Level I

Truncate or Split

I have a large dataset and I would like to split with the first 7 characters in a new column. I am trying to use the left function, but I am getting an error.

 

riksmith_2-1605829319633.png

 

 

riksmith_1-1605829278285.png

 

 

riksmith_0-1605829221587.png

 

2 REPLIES 2
txnelson
Super User

Re: Truncate or Split

try

left( char( :event_time ), 7 )

I am guessing that your event_time column is numeric

Jim
Georg
Level VII

Re: Truncate or Split

or

for a 16 digit number this formula would give you the 7 left digits, where you can also use trunc instead of round ...

Round( :event_time / 1000000000 )
Georg