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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
qv_testing
Specialist II
Specialist II

Split the data

Hi All.

I have one field

Name

A:1 B:2 C:3 D:4

i want to display

A 1

B 2

C 3

D 4

Thanks in Advancee................

1 Solution

Accepted Solutions
MayilVahanan

Hi

Try like this

Load Replace(SubField(Name,' '),':',' ') as Name;

Load * Inline

[

Name

A:1 B:2 C:3 D:4

];

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

1 Reply
MayilVahanan

Hi

Try like this

Load Replace(SubField(Name,' '),':',' ') as Name;

Load * Inline

[

Name

A:1 B:2 C:3 D:4

];

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.