Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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)
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

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

KeepChar(NameID, '0123456789')

avinashelite

Try like this

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

mhamurcuoglu
Contributor III
Contributor III
Author

Thank you so much