Skip to main content
Announcements
Qlik Community Office Hours - Bring your Ideation questions- May 15th, 11 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
jblomqvist
Specialist
Specialist

How can I extract something from this string text?

Hi all,

I have the following data:

How can I extract the code between the symbols ^ ^ above?

I want those values to exist in a separate field

Thank you!

1 Solution

Accepted Solutions
Anonymous
Not applicable

Either

subfield (FieldName, '^', 2)

or

TextBetween(FieldName, 'CLIENT001^', '^20')

Edit:

or

mid(FieldName,11,7)

or ...

View solution in original post

2 Replies
Anonymous
Not applicable

Either

subfield (FieldName, '^', 2)

or

TextBetween(FieldName, 'CLIENT001^', '^20')

Edit:

or

mid(FieldName,11,7)

or ...

maxgro
MVP
MVP


load

yourfield,

subfield(yourfield, '^' ,1) as firstfield,

subfield(yourfield, '^' ,2) as secondfield,

.........

from

.......