splitting contact into first name last name colums
splitting contact into first name last name colums
I have a spreadsheet where A1 is Contact, A2 is Bill Smith.
I want A2 to Be Bill, B2 to be Smith and so on.
Kevin
I want A2 to Be Bill, B2 to be Smith and so on.
Kevin
Re: splitting contact into first name last name colums
Select your data, then Data > Text to Columns.
By changing the delimiter character to 'space', you can split the two names into two separate columns.
Have you read the Forum Survival Guide?
What OS and OOo version are you using?
You must have OOo >= 2.4.0 to use the "Text to Columns" feature.
By changing the delimiter character to 'space', you can split the two names into two separate columns.
Have you read the Forum Survival Guide?
What OS and OOo version are you using?
You must have OOo >= 2.4.0 to use the "Text to Columns" feature.
AOO4/LO5 • Linux • Fedora 23
Re: splitting contact into first name last name colums
If you need to do it with formulas, you could use:
A2: Bill Smith
B2: =LEFT(A2;SEARCH(" ";A2)-1)
C2: =MID(A2;SEARCH(" ";A2)+1;LEN(A2))
A2: Bill Smith
B2: =LEFT(A2;SEARCH(" ";A2)-1)
C2: =MID(A2;SEARCH(" ";A2)+1;LEN(A2))
OOo 3.3.X on Ms Windows XP
Re: splitting contact into first name last name colums
I don't have data> text to colums.
Is there a keyboard shortcut or where can I add it in.
remember this is calc not writer.
Is there a keyboard shortcut or where can I add it in.
remember this is calc not writer.
Re: splitting contact into first name last name colums
Yeah that worked great I inserted two columns to the right of "Contact" column and ran formulas.Duhhh wrote:If you need to do it with formulas, you could use:
A2: Bill Smith
B2: =LEFT(A2;SEARCH(" ";A2)-1)
C2: =MID(A2;SEARCH(" ";A2)+1;LEN(A2))
Then dragged down to repeat all names.
Out of curiosity is there a way I can drag a forumula from cell C2 to C3:C555 ?
Re: splitting contact into first name last name colums
Now how do I delete Column A without making "VALUE" show up in my new columns B-First Name C-Last Name
Re: splitting contact into first name last name colums
Vista 2.3acknak wrote:Select your data, then Data > Text to Columns.
By changing the delimiter character to 'space', you can split the two names into two separate columns.
Have you read the Forum Survival Guide?
What OS and OOo version are you using?
You must have OOo >= 2.4.0 to use the "Text to Columns" feature.
Guess I need the update for text to columns
Re: splitting contact into first name last name colums
You can also use almost the same feature in Writer.Guess I need the update for text to columns
Copy the cells, open a new Writer doc, paste special (Ctrl+Shift+V) as "unformatted text", Menu:Table>Convert>Text to columns...
You could try to double-click the tiny-square at selected C2. This should copy down until the end of the adjacent list. Check with Ctrl+End (goto last cell).Out of curiosity is there a way I can drag a forumula from cell C2 to C3:C555
If the does not work for some reason: Type C2:C555 into the name box (left of formula bar), Menu:Edit>Fill>Down
Please, edit this topic's initial post and add "[Solved]" to the subject line if your problem has been solved.
Ubuntu 18.04 with LibreOffice 6.0, latest OpenOffice and LibreOffice
Ubuntu 18.04 with LibreOffice 6.0, latest OpenOffice and LibreOffice
Re: splitting contact into first name last name colums
Windows? If a text file, label as ".CSV". If a spreadsheet, save as a CSV. Then download freeware "CSVed" to do the job easily.
David.
David.
Re: splitting contact into first name last name colums
One way is to just HIDE column A. The other way is to select colums B & C, COPY, then PASTE SPECIAL and de-select formulas. This will convert everything in column B & C to plain text, and you can then delete column A.xkmail wrote:Now how do I delete Column A without making "VALUE" show up in my new columns B-First Name C-Last Name
OOo 3.3.X on Ms Windows XP