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 to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

Truncate or Split

riksmith
Level I

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