cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
Choose Language Hide Translation Bar
riksmith
This widget could not be displayed.
" alt = "Level I"/> 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
This widget could not be displayed.
" alt = "Level VII"/> 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

Recommended Articles