Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a data set like bellow mentioned -
ID | No |
---|---|
1 | AA751485:AA750402:AA750402:AA2503271:AA751716 |
2 | MBJ-AA3EM1 |
And I want the Output as below-
ID | No |
---|---|
1 | AA751485 |
1 | AA751485 |
1 | AA750402 |
1 | AA2503271 |
1 | AA751716 |
2 | MBJ-AA3EM1 |
Can you please help me in getting this sorted.
Regards,
Rakesh Paul
Try this:
Table:
LOAD ID,
SubField(No, ':') as No
FROM
[https://community.qlik.com/thread/237520]
(html, codepage is 1252, embedded labels, table is @1);