我在表格中有500行和大约13列数据。
我需要删除单元格内容本身,即使单元格包含所有字符作为删除,但如果单元格包含一些文本和删除的组合,它应该单独删除删除并保留剩余的文本在牢房里。
以下是我的excel的样子
A B C D E F G H I J K L M
1.2 SERVER_P RE1 **GR5**
7.3 PROXY NET
4.5 NET **CON** V1 GR
如果**中的文字是预期的,我希望在第1行中列L应该为空,在第3行中它应该删除CON,因此它应该保留" NET V1"。
这是我现在所拥有的
Dim Cell As Range
Dim iCh As Integer
Dim NewText As String
Sheets("Copy_indications").Select
With ActiveSheet
'count the rows till which strings are there
Lrow = .Cells(.Rows.Count, "B").End(xlUp).Row
End With
For Each Cell In Range("B1:M" & Lrow)
For iCh = 1 To Len(Cell)
With Cell.Characters(iCh, 1)
If .Font.Strikethrough = False Then
NewText = NewText & .Text
End If
End With
Next iCh
NewText = Cell.Value
Cell.Characters.Font.Strikethrough = False
Next Cell
如果单元格包含某些文本和删除线的组合,我的宏会删除所有删除线字符,但如果单元格包含所有字符作为删除线,则它不会删除它们而是删除它们的删除
有人可以帮我解决这个问题。
答案 0 :(得分:3)
很好的解决方案,只是纠正了一些错误(见代码中的注释)
Dim Cell As Range, iCh As Integer, NewText As String
With Sheets("Copy_indications") ' <~~ avoid select as much as possible, work directly with the objects
Lrow = .Cells(.Rows.Count, "B").End(xlUp).Row
For Each Cell In .Range("B1:M" & Lrow)
For iCh = 1 To Len(Cell)
With Cell.Characters(iCh, 1)
If .Font.Strikethrough = False Then NewText = NewText & .Text
End With
Next iCh
Cell.Value = NewText ' <~~ You were doing it the other way around
NewText = "" ' <~~ reset it for the next iteration
Cell.Characters.Font.Strikethrough = False
Next Cell
End With