Hi,
I would like to split a column by the last character. These strings doesn't contain any delimiters and varies in length. The last character should be subtracted from the first column. Like this:
If A1 contains the word "BAKERY", I would like A1 to be left with "BAKER" and B1 with "Y".
I'm aware that this kind of formula could create a circular reference. Is my best shot to use two columns with the the formula (in B1)and (in C1)![]()
=LEFT(A1, LEN(A1) - 1)
or could this be arranged with a dynamic array function somehow?![]()
=RIGHT(A1, 1)
Bookmarks