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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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