计算第x行中的非空白单元格

时间:2016-10-09 21:15:38

标签: excel vba

我想要实现的是计算行lRow中的非空白单元格。我在宏的第三行得到错误。我不知道如何解决它。

Sub CountNonEmptyCells()

    lRow = Cells(Rows.Count, 1).End(xlUp).Row

    Rows(lRow).SpecialCells(xlCellTypeConstants, 23).Cells.Count
    MsgBox lRow

End Sub

1 个答案:

答案 0 :(得分:1)

没关系,我自己解决了:

Sub CountNonEmptyCells()

    lRow = Cells(Rows.Count, 1).End(xlUp).Row

    x = Rows(lRow).SpecialCells(xlCellTypeConstants, 23).Cells.Count
    MsgBox x

End Sub