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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Splitting delimited data from a field

I have a field in my db that I am importing that is a string delimited by a ;

Example of data:

ID Codes

435 1;56;98

345 6;678;12

There is a function in QV that spilts my code into different fields, however I can't remember what it is (Blond moment).

Can anyone help ?????

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

2 Replies
Anonymous
Not applicable
Author

subfield

Not applicable
Author

Just the job - Thankyou blond moment over !!!!!

For anyone who is interested script is as follows :







Source_Data:

LOAD

* INLINE

[

;



Temp:

Load

ID

,

subfield

(Codes,';') as

Split

resident

Source_Data;

Drop

table

Source_Data;



Load

ID

,

Split

,

if

(ID = Previous(ID), peek('Count_No',-1)+1,1) as

Count_No

resident

Temp;

Drop

table

Temp;