Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How to get the expected result for the below field. I want to extract all after the first space(' ').
Thanks,
Krish.
Try the expression below to achieve what you want:
Mid(KPI,1+index(KPI, ' ', 1))
Try the expression below to achieve what you want:
Mid(KPI,1+index(KPI, ' ', 1))
Thanks @Vegar ..