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

Create number of rows based on value from column

HI all!

I am wondering how to create table like below:

TypeNumber
A1
A2
B1
B2
B3

when we have table like below:

TYpeNumber
A2
B3

Many thanks

1 Solution

Accepted Solutions
antoniotiman
Master III
Master III

Hi Thomas,

maybe

Load *,IterNo() as CountID Inline [
ID,Value
A,3
B,4
C,3
D,5
]

While IterNo() <= Value
;

Regards,

Antonio

View solution in original post

2 Replies
antoniotiman
Master III
Master III

Hi Thomas,

maybe

Load *,IterNo() as CountID Inline [
ID,Value
A,3
B,4
C,3
D,5
]

While IterNo() <= Value
;

Regards,

Antonio

Anonymous
Not applicable
Author

‌Exactly! Thanks