Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
is the ISEMPTY function?
Sub TestFunction() MsgBox CheckEmpty("MyData") End Sub Function CheckEmpty(sRangeName As String) As Boolean Dim cell As Range CheckEmpty = True For Each cell In Range(sRangeName).Cells If Not IsEmpty(cell) Then CheckEmpty = False Exit For End If Next End Function I'm pretty sure that there's a better way ....aha ! Function CheckEmpty(sRangeName As String) As Boolean CheckEmpty = WorksheetFunction.CountA(Range(sRangeName)) = 0 End Function om a sheet name a range like "MyData" in another cell =COUNTA(MyData)=0 ....will be TRUE if there's nothing in the range Patrick Molloy Microsoft Excel MVP "adehilis" wrote: Hallo, How to check if dynamic range is empty (no content)? Thank you for help. Elias |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help with dynamic ranges | New Users to Excel | |||
Dynamic Ranges | Excel Worksheet Functions | |||
how to do a dynamic ranges? | Excel Worksheet Functions | |||
Dynamic Formulas with Dynamic Ranges | Excel Worksheet Functions | |||
Dynamic Ranges Q | Excel Programming |