A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
No. You will have to copy it and then paste special as values before deleting column B.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi All
I am not too sure if this is possible in Excel however what I am trying to do is take a persons first and last name, change the text to have a capital on each word and lower case there after, remove any spaces at the start then remove everything else other than the first name then copy the result so I have the text and not the formula.
I am using the following and it all works fine:
Name in column B
=PROPER(B1) - in column C
=TRIM(C1) - in column D
=LEFT(B4,FIND(" ",B4&" ")-1) - in column E
Then copy colume E into column F using the paste values option
Then delete columns B, C, D and E
Now I am left with just the first name in column B.
Is there a way to create a function or action or something to run all of these commands in one go to speed this process up?
If so how do I do it?
Many Thanks
mrmbarnes
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
No. You will have to copy it and then paste special as values before deleting column B.
Hi
Thanks for that... it works great however it still leaves the formula and not the text... is there a way to add one more option to turn the formula into text because when I delete the name column that is no longer needed it turns into #REF!
mrmbarnes
Hi,
Try this
=PROPER(LEFT(TRIM(B4),SEARCH(" ",TRIM(B4))-1))