我的问题现在得到了回答。我在Excel中选择了几个单元格,例如Range(“B3:F6”)。运行以下代码,我从下面的答案中复制,结果将空单元格着色为灰色:
Sub CellColor()
Dim cell As Range
For Each cell In Selection.Cells
If IsEmpty(cell.Value) Then
cell.Interior.Color = RGB(217, 217, 217)
End If
Next cell
End Sub
字符串
(我已经不小心删除了我的假代码。
1条答案
按热度按时间bnl4lu3b1#
高亮显示范围内的空单元格
快速修复
字符串
改进
型