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

Split columns into multiple columns

Hi experts

I want to be able to split column into multiple columns.

I have values like this in row:

"2012-01-24T13:00:00-00:00": 19,
"2012-01-24T14:00:00-00:00": 13,
"2012-01-27T09:00:00-00:00": 23

Please note that there could be plenty of dates in one row which I’m unsure.

Is it possible to split this into date in one column and counts 19,13,23 into another column?

Thanks
Harshal.

Labels (3)
2 Replies
TRF
Champion II
Champion II

Have a look at this post where I explain how to use String.split() in a tMap

https://community.talend.com/t5/Design-and-Development/String-Handling-in-Tmap/td-p/141264

Parikhharshal
Creator III
Creator III
Author

@TRF: thanks for your reply. I had looked at those posts earlier. However, my requirement is bit different to those. I need outlook like this:

Date Count
Date 1 19
Date 2 23
Date 3 3
And so on.