How do i remove three characters from the left in excel?

While working with Microsoft Excel, we can extract any number of texts from the beginning, middle, or end using functions and formulas. On the other hand, you can remove any number of characters from a cell. In this tutorial, we are going to show you how to remove characters from the left in Excel.


Download Practice Workbook

Download this workbook to practice.


6 Ways to Remove Characters from Left in Excel

To demonstrate this tutorial we are going to use the following dataset:

How do i remove three characters from the left in excel?

Here,

Text is the column of the values where you will perform the methods.

Num_Characters is the number of characters you want to remove from the left.

The result is the final text after removing characters from the left.


1. Using the REPLACE Function to Remove Characters from Left

To remove characters from the left, we are going to use the REPLACE function. In this case, we are going to replace our characters from the left with an empty string.

The Basic Syntax of the REPLACE Function:

=REPLACE(string, 1, num_chars, “”)

Steps:

1. Type the following formula in Cell D5.

How do i remove three characters from the left in excel?

2. Then, press Enter. It will remove the character you want to remove from the left.

How do i remove three characters from the left in excel?

3. After that, drag the Fill Handle over the range of cells D6:D9.

How do i remove three characters from the left in excel?

As you can see, the number of characters we want to remove from the left is gone.

Read more: Excel Remove Characters From Right


2. The RIGHT and LEN Functions to Erase Characters from Left

As a rule, the RIGHT and LEN functions remove characters from the left. In this case, the RIGHT function gives us the characters from the right. So, it will delete characters from the left.

The  Syntax of the Formula:

=RIGHT(text,LEN(text)-num_chars)

Steps:

1. Firstly, type the following formula in Cell D5.

How do i remove three characters from the left in excel?

2. Next, press Enter.

How do i remove three characters from the left in excel?

3. Next, drag the Fill Handle over the range of cells D6:D9.

How do i remove three characters from the left in excel?

Ultimately, we have removed the specific number of characters from the left.

Read more: How to Remove First Character in Excel


3. The MID and LEN Functions to Delete Characters from Left

In General, the MID function gives us the characters starting from the middle of a text. In the case of removing characters from the left, the MID function will return the text starting from a particular index. And it will automatically remove the characters from the left.

The  Syntax of the Formula:

=MID(text,1+num_chars,LEN(text))

Note: 

1+num_chars is used as the starting number of the text. That means we are starting without the left character that we want to remove.

Steps:

1.  First, type the following formula in Cell  D5:

How do i remove three characters from the left in excel?

2. Next, press Enter. 

How do i remove three characters from the left in excel?

3. Finally, drag the Fill Handle over the range of cells D6:D9.

How do i remove three characters from the left in excel?

Finally, our formula returns the same result similar to the previous methods.

Read more: Remove First Character from String in Excel


4. Using the SUBSTITUTE Function to Remove Characters

Unlike the other methods, we are using the SUBSTITUTE function to replace the characters from the left with an empty string.

The  Syntax of the Formula:

=SUBSTITUTE(Text,LEFT(Text,num_chars),””)

In this case, the LEFT function will return the characters from the left that we want to delete.

Steps:

1. First type the following formula in Cell D5:

=SUBSTITUTE(B5,LEFT(B5,C5),"")

How do i remove three characters from the left in excel?

2. After that, press Enter.

How do i remove three characters from the left in excel?

3. Then, drag the Fill Handle over the range of cells D6:D9.

How do i remove three characters from the left in excel?

Finally, we are successful in removing characters from the left.

Read more: How to Remove Characters in Excel


5. Using Text to Columns Wizard to Delete Characters from Left

Typically, using the Text to Columns option of the Data tab in Excel splits our dataset into two columns. In other words, you can remove the specific number of characters from the left.

Now, we are going to use the following data set which has only one column for the ease of demonstration:

How do i remove three characters from the left in excel?

Simply put, we are going to split and remove the character from the left.

Steps:

1.  Select the range of Cells B3:B7.

How do i remove three characters from the left in excel?

2. Now, go to the Data tab >  Data Tools > Text to Columns.

How do i remove three characters from the left in excel?

3. After that, you will see a dialog box. Select the Fixed width option. Click on Next.

How do i remove three characters from the left in excel?

4. Now, in the second dialog box, select between the first character and second character as shown below:

How do i remove three characters from the left in excel?

5. Then, click on Next.

6. After that, it will show which characters our column will be divided.

How do i remove three characters from the left in excel?

7. Now, click on Finish. 

How do i remove three characters from the left in excel?

As you can see, our data is divided according to the left character on a new column.

Read more: How to Remove Specific Characters in Excel


6. Excel VBA Codes to Delete Characters from Left

Now, if you have knowledge about the VBA Codes then you should also try this method.

We are using this dataset to demonstrate :

How do i remove three characters from the left in excel?

Steps:

1. Press Alt+F11 on the keyboard. It will open the dialog box of VBA. Click Insert > Module. 

How do i remove three characters from the left in excel?

3. After that, it will open the editor of VBA. Now, type the following code:

Public Function RemoveLeft(txt As String, num As Long)
RemoveLeft = Right(txt, Len(txt) - num)
End Function

How do i remove three characters from the left in excel?

3. Now, go to the dataset. Type the following formula in Cell D5.

=RemoveLeft(B5,C5)

How do i remove three characters from the left in excel?

4. Then, press Enter.

How do i remove three characters from the left in excel?

5. Next, drag the Fill Handle over the range of cells D6:D9.

How do i remove three characters from the left in excel?

As you can see, we are successful in removing characters from the left using VBA.

Read more: VBA to Remove Characters from String in Excel


Conclusion

To conclude, I hope these methods will definitely help you remove the characters from the left in Excel. Download the practice workbook and try this on your own. Surely, it will enrich your knowledge. Also, don’t forget to check our website Exceldemy.com for various Excel-related articles.


  • How to use SUBSTITUTE function in Excel (4 Examples)
  • REPLACE Function in Excel (3 Suitable Examples)
  • How to Use LEN Function in Excel (Formula and VBA Code)
  • How to Remove Spaces in Excel: With Formula, VBA & Power Query
  • Remove the First Character from a String in Excel with VBA
  • Remove Last Character from String in Excel with VBA

How do I remove a few characters from left in Excel?

How to remove characters from left in Excel.
=RIGHT(A2, LEN(A2) - 1).
The screenshot below shows the REPLACE formula in action. ... .
=RemoveFirstChars(A4, 3).
=LEFT(A2, LEN(A2) - 1).
=LEFT(A2, LEN(A2) - 5).
As you can see in the below screenshot, our custom function works brilliantly!.
…and the result won't keep you waiting:.

How do I get rid of 3 digits left in Excel?

Type the following formula in Cell D5. =REPLACE(B5,1,C5,"").
Then, press Enter. It will remove the character you want to remove from the left..
After that, drag the Fill Handle over the range of cells D6:D9..

How do I remove four characters from the left in Excel?

The formula =RIGHT(A2,LEN(A2)-4) in cell B2 is used to remove the first four characters in the product code. I have then copied the formula down to cell B7 using the fill handle.

How do I remove 3 characters in Excel?

LEN(D5)-3 ▶ calculates the length of the text, “Jason Roy” and then subtracts the result with 3..
D5 ▶ refers to the cell address of the text “Jason Roy”..
=LEFT(D5,LEN(D5)-3) ▶ truncates the last 3 characters i.e. “Roy” from the text “Jason Roy”..