Загрузка страницы

4 Easy Ways to Remove Parentheses in Excel

☕ If you find my Excel videos useful and would like to support me, you can buy me a coffee - https://www.buymeacoffee.com/SumitB

In this video, I will show you four simple methods you can use to quickly remove parentheses in Excel.

The following methods are covered in this video:
- Using Flash Fill
- Using Find and Replace
- Using the SUBSTITUTE Function
- Using VBA Macro

You can download the example file from here - https://www.dropbox.com/s/4zjyqelp3thps4d/Remove%20Parentheses.xlsm?dl=1

You can also read the tutorial here - https://trumpexcel.com/remove-parentheses-excel/

00:00 Intro
00:18 Remove Parentheses Using Flash Fill
02:12 Remove Parentheses Using Find and Replace
03:28 Remove Parentheses Using the SUBSTITUTE Function
05:34 Remove Parentheses Using VBA Macro

------------------------------------------------------------------------------------------------

'Code developed by Sumit Bansal from https://trumpexcel.com
Sub RemoveParentheses()
Dim rng As Range
Dim cell As Range

' Set the current selection as the range to be used
Set rng = Selection

' Loop through each cell in the selection
For Each cell In rng
' Remove parentheses
cell.Value = Replace(cell.Value, "(", "")
cell.Value = Replace(cell.Value, ")", "")
Next cell
End Sub

----------------------------------------------------------------------------------------------------------

✅ Free Excel Course (Basic to Advanced) - https://trumpexcel.com/learn-excel/
✅ Free Dashboard Course - https://bit.ly/free-excel-dashboard-course
✅ Free VBA course - https://bit.ly/excel-vba-course
✅ Free Power Query Course - https://bit.ly/power-query-course
✅ Best Excel Books: https://trumpexcel.com/best-excel-books/

Subscribe to get awesome Excel Tips every week: https://www.youtube.com/user/trumpexcel?sub_confirmation=1

#Excel #ExcelTips #ExcelTutorial

Видео 4 Easy Ways to Remove Parentheses in Excel канала TrumpExcel
Показать
Комментарии отсутствуют
Введите заголовок:

Введите адрес ссылки:

Введите адрес видео с YouTube:

Зарегистрируйтесь или войдите с
Информация о видео
22 июня 2023 г. 13:00:31
00:11:32
Яндекс.Метрика