我想要实现的是计算行lRow
中的非空白单元格。我在宏的第三行得到错误。我不知道如何解决它。
Sub CountNonEmptyCells()
lRow = Cells(Rows.Count, 1).End(xlUp).Row
Rows(lRow).SpecialCells(xlCellTypeConstants, 23).Cells.Count
MsgBox lRow
End Sub
答案 0 :(得分:1)
Sub CountNonEmptyCells()
lRow = Cells(Rows.Count, 1).End(xlUp).Row
x = Rows(lRow).SpecialCells(xlCellTypeConstants, 23).Cells.Count
MsgBox x
End Sub