Loose format

joan12

New Member
Joined
May 15, 2024
Messages
2
Office Version
  1. 365
Platform
  1. MacOS
Hello,
I have implemented a simple VBA code that deletes the word "hello" from all the cells in column E.

Code:
Sub DeleteHelloInColumnE()
    Dim ws As Worksheet
    Dim cell As Range
    
    Set ws = ActiveSheet
    
    For Each cell In ws.Range("E1:E" & ws.Cells(ws.Rows.Count, "E").End(xlUp).Row)
  
        cell.Value = Replace(cell.Value, "hello", "")
    Next cell
End Sub

The issue is that when I run the code, it also removes the formatting of words that are bold or italic. It appears that running VBA code to delete or replace content inside cells also removes the formatting.

Is there a solution to preserve formatting?

Thank you.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
I have tried this code:


VBA Code:
Sub DeleteHelloInColumnE()
    Dim ws As Worksheet
    Dim cell As Range
    Dim text As String
    Dim startPos As Long

    Set ws = ActiveSheet
    
    For Each cell In ws.Range("E1:E" & ws.Cells(ws.Rows.Count, "E").End(xlUp).Row)
        text = cell.Value
        startPos = InStr(1, text, "hello", vbTextCompare)
        
        Do While startPos > 0
            cell.Characters(startPos, Len("hello")).Delete
            text = cell.Value
            startPos = InStr(1, text, "hello", vbTextCompare)
        Loop
    Next cell
End Sub

However, when there are 259 characters, it works, but with 260 characters or more, the app freezes, and I need to kill and restart it.
 
Upvote 0

Forum statistics

Threads
1,216,731
Messages
6,132,389
Members
449,725
Latest member
Enero1

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top