Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Tatynout
Contributor III
Contributor III

Script LOAD - Duplicate rows under a condition

Hello, I hope someone can help.

I have a table with the following columns:

RegionSupplierAmount
Europe345610
Africa67965
Europe5687/347615

 

I need to load these data into my QlikSense application with a condition on the Supplier's field.  I want to duplicate a row if there are two  suppliers in the same cell. 

Once loaded into QS i should have the following table:

RegionSupplierAmount
Europe345610
Africa67965
Europe568715
Europe347615

 

Thanks for your help.

Regards,

Tatiana

1 Solution

Accepted Solutions
_armoco_
Partner - Creator II
Partner - Creator II

Hi, 

Try this:

SubField(Supplier,'/') as Supplier

View solution in original post

2 Replies
_armoco_
Partner - Creator II
Partner - Creator II

Hi, 

Try this:

SubField(Supplier,'/') as Supplier

Tatynout
Contributor III
Contributor III
Author

Hello ,

Yes i just tried this and it worked. Thanks 🙂