Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm basically looking to repeat this process for many differnt cells on
the same sheet. But there is no order to the cells I want to apply it threw. Suggestions? If IsEmpty(Cells(20, 3)) Then MsgBox "C&C Press. Zone not filled out on Input Sheet!" errors = True Exit Function End If |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim rng as Range
set rng = Range("A1:A10,B9,C11,F3:M3,G9") if application.CountA(rng) < rng.count then for each cell in rng if isempty(cell) then msgbox cell.Address & " is empty" end if Next End if -- Regards, Tom Ogilvy "Kevin O'Neill" wrote in message oups.com... I'm basically looking to repeat this process for many differnt cells on the same sheet. But there is no order to the cells I want to apply it threw. Suggestions? If IsEmpty(Cells(20, 3)) Then MsgBox "C&C Press. Zone not filled out on Input Sheet!" errors = True Exit Function End If |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you, works like a charm.
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
checking for empty rows before copying? | Excel Programming | |||
Checking for empty cells in a range | Excel Programming | |||
Checking for empty cells in a range | Excel Programming | |||
Checking for empty cells in a range | Excel Worksheet Functions | |||
Checking if an Excel file is empty? | Excel Programming |