Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Dividing my data

Hi,

I have a dimension that shows two different values separated by a comma, can I get these two values in to two different columns/dimensions?

I would like to have the numbers (ex. 102 or 105) in one column of the table and the letter combinations in one.

Thank you!

1 Reply
sunny_talwar

You can do like this in the script

LOAD Subfield(Totals, ',', 1) as Number,

          SubField(Totals, ',', 2) as Text

FROM ....