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: 
haymarketpaul
Creator III
Creator III

Transpose a Comma Separated Field

 

I have a field with comma separated numbers that I just need to turn into a column of single numbers - How to transpose in the script?

eg  Field of UserIDs

12345,23456
34567,45678,56789,67890,54321
82736
65432,11223,22334

 

Would become field with the following:-

12345

23456

34567

45678

56789

67890

54321

82736

65432

11223

22334

Labels (1)
1 Solution

Accepted Solutions
haymarketpaul
Creator III
Creator III
Author

 

Got it...

SubField(UserID,',')

View solution in original post

1 Reply
haymarketpaul
Creator III
Creator III
Author

 

Got it...

SubField(UserID,',')