View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Alan Beban[_4_] Alan Beban[_4_] is offline
external usenet poster
 
Posts: 171
Default Find, Offset, Enter Number

This might get you started:

Range("A:A").Find("Joe", , , xlWhole).Offset(0, 2).Value = 9

Alan Beban

BUBBA wrote:
I need some code that will go through an entire column and
find either of two names (Bob or Joe), go two columns over
(same row), and enter the number 9.

It would be nice if it could do this for all the
worksheets as the name appears in the same column in each
sheet.



TIA!