Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikconsultant
Creator III
Creator III

Searching for a function?

I have a table with a field which includes number separated with comma. I need a function which generates line for each number. Is there a function for that?

 

Example:

Colum 1   Colum 2

A                             2, 5 ,3

B                             8

 

Goal:

Colum 1   Colum 2

A                            2

A                            5

A                            3

B                             8

1 Solution

Accepted Solutions
marcus_sommer

You could use:

subfield([Column 2], ',') as [Column 2]

within the load to create for each item an extra record.

- Marcus

View solution in original post

1 Reply
marcus_sommer

You could use:

subfield([Column 2], ',') as [Column 2]

within the load to create for each item an extra record.

- Marcus