Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I am pretty much a novice in vba, but I think what I am trying to do is pretty simple. I wrote the following code Public Sub Qtr1() Dim cell1 As Range For Each cell1 In Worksheets("projection").Range("E5:E69") cell1.Resize(1, 1).Copy With Worksheets("vol qtr") .Range("J5").PasteSpecial Paste:=xlValues End With Next Application.CutCopyMode = False End Sub The purpose of the code is to copy and paste values from one sheet into another. This code works without any problems! However, I want to do the following: after it has copied E5:E69 into "vol qtr" I want it to copy E5:E69 into "price qtr" cell (J5) I tried just repeating the same code (changing the variable from cell1 to cell2) after next statement, but that does not work. I want the entire process to be within the same macro so that it can be executed with a click on just one button. Thank you, in advance, for your help. Henrik |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copying and pasting with a macro | Excel Discussion (Misc queries) | |||
Macro for Copying pasting between different spreadsheets | Excel Discussion (Misc queries) | |||
Macro copying and pasting | Excel Discussion (Misc queries) | |||
Copying and Pasting Macro | Excel Discussion (Misc queries) | |||
Copying and Pasting Rows Macro | Excel Discussion (Misc queries) |