Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Alberto,
Am Fri, 8 Mar 2013 11:17:34 +0000 schrieb Alberto Viveiros: for each cel in range("a:a") if isempty(cel) then exit for ' finish on empty cell if isempty(cel.offset(,1)) then cel.offset(,1).value = msgbox("enter a quantity for " & cel) next try: Dim rngC As Range For Each rngC In Range("A1:A12") If IsEmpty(rngC.Offset(0, 1)) Then MsgBox "enter a quantity for " & _ rngC.Offset(0, 1).Address(0, 0) End If Next Regards Claus Busch -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Check values in each column | Excel Programming | |||
Subtotals of Items in A Column based on Spec. Values found in Colu | Excel Discussion (Misc queries) | |||
Loop through column(s) to check values, perform action based on check | Excel Programming | |||
Search Column, If match found then add two values. | Excel Programming | |||
URGENT -- search in string for a value in another column, if found, return value from next column | Excel Programming |