View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Weasel Weasel is offline
external usenet poster
 
Posts: 5
Default Incremental Cell Movement

I am using this to move the value in cell E33 to Sheet3 cell E28 but what I'd
like to be able to do is move cell E33 to sheet3 E28 the first run through
and then next run
E33 should go to sheet3 E29 and so on. Is this possible.


Worksheets("sheet1").Range("e33").Copy
Worksheets("sheet3").Range("e28").PasteSpecial _
xlPasteValues
Application.CutCopyMode = False