Answers for "excel vba set range of all the not empty cells"

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 "excel vba set range of all the not empty cells"

Code answers related to "BASIC"

Browse Popular Code Answers by Language