Hey I got a long String like this "[...] increase of x.xx% [...]".
I am trying to extract only the percentage number which can be of variable length, so maybe 900.99% or 9.99%.
I tried this formula:
but this one doesnt bring the right results as the percentage figure is often not exactly 5 characters long.
Thanks for any help!
Tobi
I am trying to extract only the percentage number which can be of variable length, so maybe 900.99% or 9.99%.
I tried this formula:
Code:
=MID(G14,SEARCH("%",G14)-5,5)
Thanks for any help!
Tobi