Hello there,
I have a formula which extract a specific word from a cell and I could succeed :
=LEFT(MID(K2;FIND(" ";K2)+1;LEN(K2));FIND("/";MID(K2;FIND(" ";K2)+1;LEN(K2)))-1)
The result is "100ml"
After, my goal was to separate "100" and "ml" to make "100 ml" and I could also succeed with...