Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you're doing the .copy in code:
Option Explicit Sub Macro3A() Range("B6:H6").Copy Worksheets("sheet2").Select ActiveCell.PasteSpecial Paste:=xlPasteValues, _ Operation:=xlNone, SkipBlanks:=False, Transpose:=True End Sub If you've already copied the range and want to paste to the activecell (you already changed to the other sheet manually): Option Explicit Sub Macro3A() ActiveCell.PasteSpecial Paste:=xlPasteValues, _ Operation:=xlNone, SkipBlanks:=False, Transpose:=True End Sub jack wrote: How do I change the first three lines of the macro below so that the paste special statement will execute to the active cell of a separate worksheet after making the manual copy selection ? Sub Macro3() Range("B6:H6").Select Selection.Copy Range("L6").Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=True End Sub -- Dave Peterson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cut & Paste Need Special Macro | Excel Discussion (Misc queries) | |||
PASTE SPECIAL w/ Macro | Excel Discussion (Misc queries) | |||
Cut and Paste using Macro gives paste special method error | Excel Programming | |||
Dynamic Copy/Paste Special Formulas/Paste Special Values | Excel Programming | |||
Macro/Paste Special | Excel Programming |