Excel Vba Chck That The Range Is Empty

[Solved] Excel Vba Chck That The Range Is Empty | Basic - Code Explorer | yomemimo.com
Question : excel vba chck that the range is empty

Answered by : plamen-grozdanov

Sub TestIsEmpty() If WorksheetFunction.CountA(Range("A38:P38")) = 0 Then MsgBox "Empty" Else MsgBox "Not Empty" End If
End Sub

Source : https://stackoverflow.com/questions/10811121/detect-if-range-is-empty/53196985 | Last Update : Mon, 13 Sep 21

Answers related to excel vba chck that the range is empty

Code Explorer Popular Question For Basic