Feb 09 2023 06:07 AM
Hi All,
I would like to separate the data in this cell - having the numeric value (with the letter class) in one column and the text (description) in another column. If I do a =LEFT(A2,9) I can extract the number and letter class, I am just a little stuck in getting the rest of the text into another column. Could I ask for a little help please.
Support page
Here is an example - 111120a - (PRP) Oilseed (except Soybean) Farming
Feb 09 2023 06:44 AM
Solution@NBBingo1858 If you always want the 2nd column to contain everything except the first 9 characters use this:
=RIGHT(A2),LEN(A2)-9)
Feb 09 2023 06:57 AM
Feb 09 2023 07:05 AM
Feb 09 2023 08:55 AM