Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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!
Either
subfield (FieldName, '^', 2)
or
TextBetween(FieldName, 'CLIENT001^', '^20')
Edit:
or
mid(FieldName,11,7)
or ...
Either
subfield (FieldName, '^', 2)
or
TextBetween(FieldName, 'CLIENT001^', '^20')
Edit:
or
mid(FieldName,11,7)
or ...
load
yourfield,
subfield(yourfield, '^' ,1) as firstfield,
subfield(yourfield, '^' ,2) as secondfield,
.........
from
.......