I have MS Excel file with 8k products code. For example:
SOR 309704 or
LEW 2992 6005BK
I need a formula which cut this string to first space.
SOR 309704 to 309704
LEW 2992 6005BK to 2992 6005BK
Can You help me with this problem ?
Kind regards
=FIND(" ",A1)
will give you the position of the first space character. Then you can take everything on the right-hand side using the right()
function:
=RIGHT(A1, LEN(A1) - FIND(" ", A1))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With