Copying partial cell to another cell in OpenOffice Calc
Posted
by
Justin
on Super User
See other posts from Super User
or by Justin
Published on 2011-05-28T19:50:07Z
Indexed on
2012/10/06
9:40 UTC
Read the original article
Hit count: 240
openoffice.org
Cell A1 says 0001 John Smith Cell A2 says 0002 Bill Snyder
I want to basically split this, so one column just shows the numbers (0001, 0002, etc.) and then another column just shows the name.
The first part is easy. Using the function "=LEFT(A1;4)" I can get 0001. How can I grab the name? Using "RIGHT(A1;99)", for example, will grab the entire string "0001 John Smith". Since each name is different in length, I'm not sure what to do. Can I somehow tell it to grab the whole string EXCEPT the first 4 characters? Or somehow tell it to grab the last 2 WORDS instead of a number of characters like it's asking?
© Super User or respective owner