Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
raadwiptec
Creator II
Creator II

sub string

Hi all,

My output data below looks like this . In the qlikview script I am concatenating 2 columns .so I get below result

954379543867 ¦  decode

38473843 ¦ capcitors

985764543988590 ¦ cables

using the expression can I take the values after the symbol  '¦'

3 Replies
morganaaron
Specialist
Specialist

SubField([Your Field Name], '¦', 2)

sasiparupudi1
Master III
Master III

Trim(SubField([Your Field Name], '¦', 2))

ecolomer
Master II
Master II

For the first field:


Trim(SubField([Your Field Name], '¦', 1)) as First


And for the second:


Trim(SubField([Your Field Name], '¦', 2)) as Second