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: 
qlikviewaf
Creator
Creator

Generate Table based on column value

Hello everyone.

 

I have a table structure as the one below "current table" - i would like to generate a table starting from the current one, where the row by Item/Lot/Location is repeated many times as the quantity value. 

There's any way on qlikview to do this?

Thank you

 

 

qlikviewaf_0-1657544257523.png

 

Labels (2)
1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

Load
Item,
Lot,
Location,
1 as NewQuantity
From ...
While IterNo() <= Quantity;

View solution in original post

1 Reply
hic
Former Employee
Former Employee

Load
Item,
Lot,
Location,
1 as NewQuantity
From ...
While IterNo() <= Quantity;