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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. 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 (1)
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  ..