How to Remove Parentheses in Excel (4 Easy Ways)

Get FREE Advanced Excel Exercises with Solutions!

While dealing with data in Microsoft Excel, there may be unnecessary parentheses within it. No doubt, we would like to learn some easy and fast techniques with which we can remove extra brackets. In this article, you will learn 4 easy methods on how to remove parentheses in Excel with suitable examples and proper illustrations.

How to Remove Parentheses in Excel


Download Practice Workbook

You can download the practice workbook from here and practice on your own.


What Are Parentheses in Excel?

In general, Parentheses are a pair of characters or symbols that group elements together. It has different expressions in different contexts. In Excel, parentheses are used to evaluate the values first inside it, before other operations in a single formula. We can find 2 scenarios in Excel while using parentheses.

  • In the case of more than one parentheses in a formula, the calculation is done from left to right.
  • On the other hand, when there are multiple parentheses inside one another, then it will calculate with an inside-out process. This means, the innermost formula or value is evaluated first and the outermost at the last level.

4 Easy Ways to Remove Parentheses in Excel

Let’s get introduced to our dataset first. I have placed some fruit names as Product ID and their Prices in my dataset. Look that there are numbers within parentheses with every item. The numbers denote the product codes where the parentheses are just redundancies.

Dataset to Remove Parentheses

Now we’ll remove the parentheses using the methods below.


1. Use Find & Replace to Remove Parentheses

In this first method, we will use the Find & Replace command to remove parentheses. Here, we will erase each parenthesis one after another. Let’s see how it works.

  • First, select the Cell range B5:B11.
  • Then, select Find & Select from the Home tab

Selecting Find & Select from Home Tab

  • In the drop-down menu, choose Replace.

Choosing Replace Option

  • As a result, you will get the Find & Replace dialogue box. You can also get it with the keyboard shortcut Ctrl + H.
  • Now, type “(“ in the Find what box and keep the Replace with box empty.
  • Later, press Replace All to remove the first parentheses.

Inserting 1st Parentheses to Replace

  • Again, type “)“ in the Find what box and keep the Replace with box empty.
  • Then, press Replace All again.

Inserting 2nd Parentheses to Replace

  • Finally, you will see that all the parentheses are removed perfectly.

Final Output of Using Find & Replace to Remove Parentheses

Note: If you want to remove parenthesis with its text inside then type (*) in the Find what box and press Replace All to get the output.

Replacing Parentheses with Text

Read More: How to Remove Dollar Sign in Excel (7 Easy Ways)


2. Insert SUBSTITUTE Function to Delete Parentheses in Excel

In this method, we’ll use the SUBSTITUTE function to remove parentheses in excel. The SUBSTITUTE function finds a text in a cell and replaces it with another text. We’ll do the operation with two easy steps. First, we’ll remove the start parentheses in Column Output1. And then end parentheses in Column Output2. Let’s see the steps below.

  • In the beginning, select Cell D5 and type the formula given below.
=SUBSTITUTE(B5,"(","")
  • Then, just hit Enter.

Inserting SUBSTITUTE Function for Output 1

  • Afterward, drag the Fill Handle icon to copy the formula for the cells below.
  • Soon after, you will spot that the start parentheses are gone.

Removing 1st Parentheses

  • Next, in Cell E5 write the formula.
=SUBSTITUTE(D5,")","")

Removing 2nd Parentheses with SUBSTITUTE Function

  • Following this, press the Enter button and then drag the Fill Handle icon to copy the formula.
  • Now we see that all the parentheses are removed from the dataset.

How to Remove Parentheses in Excel

Read More: How to Remove Spaces in Excel: With Formula, VBA & Power Query


Similar Readings:


3. Embed VBA Macros to Erase Parentheses in Excel

If you like to work with codes in Excel, then you can do it with the Visual Basic Application or, VBA. Here, we’ll remove all the parentheses using VBA codes.

  • First, right-click on the sheet title.
  • Then, select View Code from the context menu.

Opening Module with View Code

  • As a result, the VBA Module window will open up.
  • Here, write the codes given below.
Option Explicit
Sub DelParentheses()
Cells.Select
Selection.Replace What:="(", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Selection.Replace What:=")", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
End Sub

Inserting VBA Code to Remove Parentheses

  • Next, just press the Run Sub from the Run tab to run the codes.

Running VBA Code

  • Finally, you will notice that all the parentheses are deleted from the selected range.

Output of Embedding VBA to Remove Parentheses

Related Content: How to Remove the First Character from a String in Excel with VBA


4. Combine LEFT And FIND Functions to Remove Text with Parentheses in Excel

Here, we’ll combine two functions to remove parentheses in excel. They are the LEFT function and the FIND function. The LEFT function returns the first character or characters in a text string from the left based on the number of characters you specify. The FIND function is used to find the position of a substring in a string. Now, let’s see the steps one by one.

  • In the beginning, write the given formula in Cell D5.
=LEFT(B5,FIND("(",B5,1)-1)

Inserting Formula with LEFT & FIND Functions

  • Now, click Enter to get the output.
  • Finally, just drag the Fill Handle icon to copy the formula and you will get the final output.

Final Output after Removing Parentheses

Formula Breakdown:

  • FIND(“(“,B5,1)

The FIND function will find the position number of start parentheses starting from the first position that returns-

{7}

  • LEFT(B5,FIND(“(“,B5,1)-1)

Then, the LEFT function will keep only 6 letters starting from the left, that’s why 1 is subtracted from the output of the FIND function. Finally, it will return as-

{Carrot}

Read More: How to Remove Characters from Left in Excel (6 Ways)


Conclusion

In this article, we tried to explain how to remove parentheses in Excel in 4 easy ways. I hope all of the methods described above will be good enough to remove parentheses in excel. Feel free to ask any questions in the comment section and please give me your feedback. Visit our website ExcelDemy to explore more.


Related Articles

Md. Sourov Hossain Mithun

Md. Sourov Hossain Mithun

Hello! I am Md. Sourov Hossain Mithun. Welcome to my profile. Currently, I am working at Exceldemy as an Excel and VBA Content Developer. Excel is amazing software. Here I will post excel related useful articles. I am a graduate of Bangladesh University of Engineering and Technology. I love to learn new things and work with them. Thank you.

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo