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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
mario-sarkis
Creator II
Creator II

Transformatio field

hey all,

if i have for example this field key: ''1234|Account|Domici"

‌i want to transform it into 3 field first one :1234

Second one :Account

Third one : Domici

hope u can help

1 Solution

Accepted Solutions
sunny_talwar

Try this may be:

SubField(FieldKey, '|', 1) as FirstField,

SubField(FieldKey, '|', 2) as SecondField,

SubField(FieldKey, '|', 3) as ThirdField,

View solution in original post

2 Replies
luciancotea
Specialist
Specialist

see SubField() in help.

sunny_talwar

Try this may be:

SubField(FieldKey, '|', 1) as FirstField,

SubField(FieldKey, '|', 2) as SecondField,

SubField(FieldKey, '|', 3) as ThirdField,