View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Carl Carl is offline
external usenet poster
 
Posts: 361
Default Fill function to next cells

I have a macro that requires functions in the adjacent cells filled right
every month. So for example cells A10 to A15 need to be copied to cells B10
to B15 this month. But next month the cells from B10 to B15 will need to be
copied to cells C10 to C15. So what I want to do is find the correct cell
and then:

ActiveCell.Select
Selection.Resize(5, 1).Select

But then how do I fill these selected cells right?

Help will be much appreciated.