How do you remove html from 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 I convert HTML to plain Text in Excel?

Remove HTML from Text in Excel Select the cell that contains the HTML and hit Ctrl + H to go to the Find/Replace window. In the Find what: input, type and then leave the Replace with: input blank.

How do I remove code from Text in Excel?

Remove character from multiple cells using Find and Replace.
Select a range of cells where you want to remove a specific character..
Press Ctrl + H to open the Find and Replace dialog..
In the Find what box, type the character..
Leave the Replace with box empty..
Click Replace all..

Can you change HTML to Excel?

To convert an . html file, open it using Excel [File - Open] and then save it as a . xlsx file from Excel [File - Save as].

How do I get rid of HTML tags?

The HTML tags can be removed from a given string by using replaceAll[] method of String class. We can remove the HTML tags from a given string by using a regular expression. After removing the HTML tags from a string, it will return a string as normal text.

Chủ Đề