删除单元格,如果它包含< 3个字符

时间:2013-07-22 08:42:06

标签: excel numbers character cells

正如标题所暗示的,如果单元格中的字符数是<单元格中的字符数,则我想删除单元格(删除文本)。 3.

例如

Row1 Row2 SN DWD

124 411 1 123

32 231 01 23

在这里,我想将“SN”,“1”,“32”,“01”和“23”全部制成空白单元格。

1 个答案:

答案 0 :(得分:0)

假设你的意思是Excel

Sub ClearCellsWithLessThan3Chars()
 Dim cell As Range
 For Each cell In ActiveSheet.UsedRange
    If (Len(cell.Text) < 3) Then
       cell.Clear
    End If
 Next
End Sub