I have a "form" on one worksheet and 9 cells in it that are used to enter data in range F1
-F9
.
Then I want to copy that data from those cells to one line on the 2nd page. I have a recorded macro that does this, but it takes about 45 seconds to process. It selects each sheet manually followed by a copy/paste operation into the new line. There has got to be a more optimal way to do this.
Here is part of the code:
Sheets("INBOUND").Select
Range("b3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("TAG").Select
Range("f7").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("INBOUND").Select
Range("c3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("TAG").Select
Range("f9").Select
Application.CutCopyMode = False