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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
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;