Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
maniram23
Creator II
Creator II

AUTOGENERATE

Hi experts,

I have table like this,

id, name

1, a/b/c/d

But i want my output like this

id, name

1, a

2, b

3, c

4, d

Please help me.

Regards

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try like:

Load

        RowNo() as ID,

        SubField(name,'/') as Name

Inline [

id, name

1, a/b/c/d]

View solution in original post

3 Replies
tresesco
MVP
MVP

Try like:

Load

        RowNo() as ID,

        SubField(name,'/') as Name

Inline [

id, name

1, a/b/c/d]

vinieme12
Champion III
Champion III

What should be the output for below??

id, name

1, a/b/c/d

2, x/y/z

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
satheshreddy
Creator III
Creator III

Hi Vineeth,

output will like below.

  

IDname
1a
2b
3c
4d
5x
6y
7z

Regards

Sathish