求EXCEL中的VBA代码:当A1>=10,清除B1的内容
发布网友
发布时间:2024-10-04 01:46
我来回答
共2个回答
热心网友
时间:2024-10-14 19:20
Sub bbb()
Dim i As Integer
For i = 1 To Range("A65536").End(xlUp).Row
If Range("A" & i) >= 10 Then
Range("B" & i).ClearContents
End If
Next
End Sub
热心网友
时间:2024-10-14 19:24
用VBA解决,简单
sub 删除()
if cells(1,1)>=10 then
cells(1,2)=""
end if
end sub