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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

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
MVP
MVP

Try this may be:

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

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

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