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:

YouTube video
Clear Everything Before the Hyphen with Excel's REPLACE Formula | MyExcelOnline

DOWNLOAD EXCEL WORKBOOK

STEP 1: We need to enter the Replace function next to the cell that we want to clean the data from:

=REPLACE

Clear Everything Before the Hyphen with Excel's REPLACE Formula | MyExcelOnline

 

STEP 2: The Replace arguments:

old_text

Which text do we want to change?

Reference the cell that contains the text string:

=REPLACE(C10,

Clear Everything Before the Hyphen with Excel's REPLACE Formula | MyExcelOnline

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,

 Clear Everything Before the Hyphen with Excel's REPLACE Formula | MyExcelOnline

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),

Clear Everything Before the Hyphen with Excel's REPLACE Formula | MyExcelOnline

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), ” “)

Clear Everything Before the Hyphen with Excel's REPLACE Formula | MyExcelOnline

 

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:

Clear Everything Before the Hyphen with Excel's REPLACE Formula | MyExcelOnline

 

 

HELPFUL RESOURCES:

JOIN OUR FREE EXCEL COURSES BELOW
Click here to access these FREE Excel courses!

 

If you like this Excel tip, please share itEmail this to someone

email

Pin on Pinterest

Pinterest

Share on Facebook

Facebook

Tweet about this on Twitter

Twitter

Share on LinkedIn

Linkedin