sorry, i'd also like to know how to get the "4" from "1.29(4/5.00 sal) using the mid function.
Thanks.
=mid(a1,find("(",a1)+1,mmult(find({"(","/"},a1),{-1;1})-1)
What about if I wanted to extract the "5.00" from 1.29(4/5.00 SAL) or "6.00" from 1.69(3/6.00 SAL)
Thank you.
=MID(A1,FIND("/",A1)+1,MMULT(FIND({"/"," "},A1),{-1;1})-1)
Hi FlameRetired,
I couldn't get =MID(A1,FIND("/",A1)+1,MMULT(FIND({"/"," "},A1),{-1;1})-1) to work.