REPLACE Formula in Excel

Cleaning Data with Excel’s REPLACE Formula
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)
There are times when we are given a bunch of data that is not clean, is incorrect or just needs to be updated and we need to make some manual adjustments to it.
For example, we have a set of phone numbers that have incorrect area codes in it:
We want to change the area code of 817, into the area code 123.
The REPLACE formula in Excel can help you change the text very very easily…goodbye to manual adjustments!
I explain how you can do this below:

STEP 1: We need to enter the Replace function next to the cell that we want to clean the data from:
=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 replace the area code 817, which starts from the 4th character in the phone number sequence:
1st character is the +
2nd character is the 1
3rd character is the –
4th character is the 8
=REPLACE(C10, 4,
 
num_chars
How many characters do we want to replace?
We want to replace the area code 817, which is 3 characters long:
=REPLACE(C10, 4, 3,
new_text
What text will serve as the replacement?
We want to replace the area code 817 with the area code 123:
=REPLACE(C10, 4, 3, “123”)
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:
Change Phone Area Codes with Excel’s REPLACE Formula
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)
There are times when we are given a bunch of data that is not clean, and we needed to make manual adjustments to it.
For example, we have a set of phone numbers that have incorrect area codes in them.
We want to replace each phone number’s old area code with a new area code, specified in the NEW column:
We want to change the area code of 370, into the area code of 111.
For the second phone number, we want to change the area code of 961 to 222…and so on.
The REPLACEÂ formula in Excel can help you clean & replace the text very very easily…goodbye to slow manual adjustments!
I explain how you can do this below:

STEP 1: We need to enter the Replace function next to the cell that we want to clean the data from:
=REPLACE
STEP 2: The Replace arguments:
old_text
Which text do we want to change?
Reference the cell that contains the text string:
=REPLACE(A11,
start_num
Which character do we want to start the replacement from?
We want to replace the area code 370, which is the 2nd character in the phone number.  The open parenthesis ( is the 1st character:
=REPLACE(A11, 2,
 
num_chars
How many characters do we need to replace?
We want to replace the area code 370, which is 3 characters long:
=REPLACE(A11, 2, 3,
new_text
What text will serve as the replacement?
We want to replace the area code 370Â with the area code of 111. The replacement values are in the next column (column B):
=REPLACE(A11, 2, 3, B11)
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:
Extract Last Name with Excel’s REPLACE Formula
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)
I had a scenario where I wanted to extract the last names from a list of names using a formula.
Did you know that we can creatively use the Replace formula to replace the first name with an empty string, leaving us with the SURNAME?
Here is what we want to happen:
I explain how you can do this below:

STEP 1:Â To start off, let us try the Search function and see what it will give us. We want to search on which character the space resides on. Â Type in:
=SEARCH(” “, C11)
You will see that it returned 6.
This means our space is on the 6th character of the name Talon Ferguson.
We will use this in our Replace function later in STEP 3.
STEP 2: Clear the Search function. We need to enter the Replace function next to the cell that we want to clean the data from:
=REPLACE
STEP 3: The Replace arguments:
old_text
Which text do we want to change?
Reference the cell that contains the text string:
=REPLACE(C11,
start_num
Which character do we want to start the replacement from?
We want to replace the first name, which resides on the first character:
=REPLACE(C11, 1,
 
num_chars
How many characters do we need to replace?
We don’t have the exact number of characters, so this is where the SEARCH function comes in handy from STEP 1 above.
Search for the space character ” “ which tells us the end of the First Name:
=REPLACE(C11, 1, SEARCH(” “, C11),
new_text
What text will serve as the replacement?
Now that we have accounted for all the characters from the First Name, we need to clear these.
We can do this by replacing it with an empty string.
This will “erase” the First Name, and leave us with the Last Name.
=REPLACE(C11, 1, SEARCH(” “, C11), “”)
STEP 4: Do the same for the rest of the cells by dragging the REPLACEÂ formula all the way down using the left mouse button.
Now we have all of the last names:
Latest Tutorials