Answers for "is empty excel vba"

VBA
0

excel vba chck that the range is empty

Sub TestIsEmpty()
    If WorksheetFunction.CountA(Range("A38:P38")) = 0 Then
        MsgBox "Empty"
    Else
        MsgBox "Not Empty"
    End If
End Sub
Posted by: Guest on September-06-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language