Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI all!
I am wondering how to create table like below:
| Type | Number |
|---|---|
| A | 1 |
| A | 2 |
| B | 1 |
| B | 2 |
| B | 3 |
when we have table like below:
| TYpe | Number |
|---|---|
| A | 2 |
| B | 3 |
Many thanks
Hi Thomas,
maybe
Load *,IterNo() as CountID Inline [
ID,Value
A,3
B,4
C,3
D,5
]
While IterNo() <= Value;
Regards,
Antonio
Hi Thomas,
maybe
Load *,IterNo() as CountID Inline [
ID,Value
A,3
B,4
C,3
D,5
]
While IterNo() <= Value;
Regards,
Antonio
Exactly! Thanks ![]()