Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
deepakkrish
Creator
Creator

Extract a string from a field

Hi All,

How to get the  expected result for the below field. I want to extract all after the first space(' ').

 

deepakkrish_0-1637927696510.png

Thanks,

Krish.

Labels (2)
1 Solution

Accepted Solutions
Vegar
MVP
MVP

Try the expression below to achieve what you want:

Mid(KPI,1+index(KPI, ' ', 1))

View solution in original post

2 Replies
Vegar
MVP
MVP

Try the expression below to achieve what you want:

Mid(KPI,1+index(KPI, ' ', 1))

deepakkrish
Creator
Creator
Author

Thanks @Vegar  ..