Excel VBA删除同列单元格中的内容
发布网友
发布时间:2022-04-19 23:04
我来回答
共1个回答
热心网友
时间:2023-10-04 10:59
Sub dd()
Dim i As Range, ii As Long
ii = 10
For Each i In [J10:BF10]
If Cells(65536, ii).End(xlUp).Offset(-1, 0).Interior.Color <> 16777215 Then
i.Value = ""
End If
ii = ii + 1
Next
End Sub