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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
cancel
Showing results for 
Search instead for 
Did you mean: 
mhamurcuoglu
Contributor III
Contributor III

split coloumn value

Hi,

Sorry for my English

I have below table and I want to split only numbers to another coloumn with scprit.

How can I make it

Thanks

NameID
Ali(1239)
Tom(4343)
John(95845)
Labels (1)
1 Solution

Accepted Solutions
ali_hijazi
Partner - Master II
Partner - Master II

load num(Textbetween(NameID,'(',')'))

I can walk on water when it freezes

View solution in original post

4 Replies
ali_hijazi
Partner - Master II
Partner - Master II

load num(Textbetween(NameID,'(',')'))

I can walk on water when it freezes
sunny_talwar
MVP
MVP

or if you will always not have numbers outside of parenthesis, then you can also try this

KeepChar(NameID, '0123456789')

avinashelite
MVP
MVP

Try like this

num(keepChar(NameID,'0123456789')) as new_column

mhamurcuoglu
Contributor III
Contributor III
Author

Thank you so much