Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
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