What does it do?
Replaces part of a text string, based on the number of characters you specify, with a different text string
Formula breakdown:
=REPLACE(old_text, start_num, num_chars, new_text)
What it means:
=REPLACE(this cell, starting from this number, all the way to this number, with this new text)
Once I was given a list of phone numbers in their international format. But for my needs, I did not want to include the country code and I just wanted the phone number.
I was looking for a quick way to remove the country code.
I discovered a cool way to do this using the REPLACE formula! Goodbye to manual adjustments!
I explain how you can do this and please go to the bottom of the page to see the animated gif tutorial:
STEP 1: We need to enter the Replace function next to the cell that we want to clean the data from:
Table of Contents
=REPLACE
STEP 2: The Replace arguments:
old_text
Which text do we want to change?
Reference the cell that contains the text string:
=REPLACE(C10,
start_num
Which character do we want to start the replacement from?
We want to remove the country code, so it starts from the first character.
=REPLACE(C10, 1,
num_chars
How many characters do we want to replace?
We want to remove all characters up to and including the first hyphen.
We will use the FIND formula.
FIND(“-“, C10) will get the location of the first hyphen.
=REPLACE(C10, 1, FIND(“-“, C10),
new_text
What text will serve as the replacement?
Since we want to remove this, you guessed it! We want the value to be an empty string which is depicted by the double quotations.
=REPLACE(C10, 1, FIND(“-“, C10), ” “)
STEP 3: Do the same for the rest of the cells by dragging the REPLACE formula all the way down using the left mouse button.
Note that all of the phone numbers are now clean:
Bryan
Bryan Hong is an IT Software Developer for more than 10 years and has the following certifications: Microsoft Certified Professional Developer (MCPD): Web Developer, Microsoft Certified Technology Specialist (MCTS): Windows Applications, Microsoft Certified Systems Engineer (MCSE) and Microsoft Certified Systems Administrator (MCSA).
He is also an Amazon #1 bestselling author of 4 Microsoft Excel books and a teacher of Microsoft Excel & Office at the MyExecelOnline Academy Online Course.