How do i remove code from text in excel?

If you have a worksheet contains text strings which are surrounded with the HTML tags, now, you want to remove all of the HTML tags from the strings to make the cells clearly and more readable as following screenshots shown. This article, I will introduce some methods to deal with this task in Excel.

Remove all HTML tags from text string with Find and Replace command

Remove all HTML tags from text string with VBA code

Remove all HTML tags from text string with Find and Replace command

In fact, the Find and Replace function in Excel may solve this problem, please do as follows:

1. Select the cells that you want to remove the HTML tags.

2. Hold Ctrl + H keys to open the Find and Replace dialog box, in the dialog, in the Find what text box, type , and leave the Replace with text box blank, see screenshot:

3. Then click Replace All button, all the HTML tags are removed at once.

Remove all HTML tags from text string with VBA code

The following VBA code can help you to remove the HTML tags from a selection, please do as follows:

1. Hold down the Alt + F11 keys in Excel, and it opens the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following VBA code in the Module Window.

VBA code: remove all HTML tags from text string

Sub RemoveTags[]
'updateby Extendoffice
    Dim xRg As Range
    Dim xCell As Range
    Dim xAddress As String
    On Error Resume Next
    xAddress = Application.ActiveWindow.RangeSelection.Address
    Set xRg = Application.InputBox["please select data range", "Kutools for Excel", xAddress, , , , , 8]
    Set xRg = Application.Intersect[xRg, xRg.Worksheet.UsedRange]
    If xRg Is Nothing Then Exit Sub
    xRg.NumberFormat = "@"
    With CreateObject["vbscript.regexp"]
        .Pattern = "\"
        .Global = True
        For Each xCell In xRg
            xCell.Value = .Replace[xCell.Value, ""]
        Next
    End With
End Sub

3. Then press F5 key to run this code, in the popped out dialog, please select the cells that you want to remove the HTML tags, see screenshot:

4. And then click OK, all the HTML tags have been removed from the selection at once.

Free Download Kutools for Excel Now!

The Best Office Productivity Tools

Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%

  • Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
  • Super Formula Bar [easily edit multiple lines of text and formula]; Reading Layout [easily read and edit large numbers of cells]; Paste to Filtered Range...
  • Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
  • Select Duplicate or Unique Rows; Select Blank Rows [all cells are empty]; Super Find and Fuzzy Find in Many Workbooks; Random Select...
  • Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
  • Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
  • Super Filter [save and apply filter schemes to other sheets]; Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
  • Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
  • More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.

Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!

How do you remove the code from a cell in Excel?

Delete or remove a formula.
Select the cell or range of cells that contain the formula..
Press Delete..

How do I remove HTML tags from text in Excel?

About This Article.
Open your project in Excel..
Navigate to the cell with the HTML tags you want to delete..
Press Ctrl + H ..
Type the HTML tags in the cells that you want to delete in the "Find what" field..
Leave the "Replace with" field blank..
Click Replace All..

How do I remove special characters from a string in Excel?

Delete special characters with Ultimate Suite.
On the Ablebits Data tab, in the Text group, click Remove > Remove Characters..
On the add-in's pane, pick the source range, select Remove character sets and choose the desired option from the dropdown list [Symbols & punctuation marks in this example]..
Hit the Remove button..

Chủ Đề