Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
jsingh71
Partner - Specialist
Partner - Specialist

How to Extract first five character from any Column??

Hi,

I have one column (Subject) value is (W0696 RE: RE: Employee GID 1000211087).

Now I want to extract only (W0696). For using which function I got this???

1 Solution

Accepted Solutions
Nicole-Smith

left(Subject, 5)

or

subfield(Subject, ' ', 1)

View solution in original post

1 Reply
Nicole-Smith

left(Subject, 5)

or

subfield(Subject, ' ', 1)