For Each c1 In ActiveSheet.UsedRange.SpecialCells(xlCellTypeVisible)
If cl.Interior.ColorIndex = 16 Then
MsgBox "Error in " & c1.Address
Exit Sub ' To step out after first error
End If
Next
End Sub
我有这个代码可以在我的工作表中搜索颜色索引为 16 的非隐藏单元格。
但是,我想添加第三个标准: SpecialCells(xlCellTypeBlanks)
这样消息仅在满足 3 个条件时出现。
感谢您的想法,
谢谢