Forum Discussion
NBBingo1858
Feb 09, 2023Copper Contributor
Splitting text from a cell
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
NBBingo1858 If you always want the 2nd column to contain everything except the first 9 characters use this:
=RIGHT(A2),LEN(A2)-9)
4 Replies
- Riny_van_EekelenPlatinum Contributor
NBBingo1858 If you always want the 2nd column to contain everything except the first 9 characters use this:
=RIGHT(A2),LEN(A2)-9)
- NBBingo1858Copper Contributor
- NBBingo1858Copper Contributormissing bracket. =RIGHT(A2),LEN(A2)-9) should be =RIGHT((A2),LEN(A2)-9) now it works. Many thanks for the formula though.