Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Take 2
Try Dim myRng as Range, c as Range Set myRng = Sheets("YourSheet").Range("A2:A1000") For each c in myRng if not c = (myCriteria) then exit sub with c 'Do Something End With Next c HTH Mick Well this clearly will exit on the 1st cell that doesn't fit myCriteria and leave the remaining cells not processed! Better way... If c = (myCriteria) Then '//do something with c End If ...so all cells in the range that fit myCriteria get processed!<g -- Garry Free usenet access at http://www.eternal-september.org Classic VB Users Regroup! comp.lang.basic.visual.misc microsoft.public.vb.general.discussion |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Resize Table Range to exclude zero values and Input New Range into achart object | Excel Programming | |||
How to exclude a cell(s) from a range w/o mult. ranges on any fcn | Excel Worksheet Functions | |||
How to exclude certain cells from a range? | Excel Programming | |||
Exclude Header from Range? | Excel Discussion (Misc queries) | |||
Exclude one range from another | Excel Programming |