Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Worksheets("Outliers_1").Cells.Copy Worksheets("Outliers").Range("A1")
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Tom,
Unlike the normal Copy Paste single line of code, use 2 separate lines of code when using PasteSpecial. You probably know this but just in case: Space and underscore at the end of a line is a line break in an otherwise single line of code. Worksheets("Outliers_1").Cells.Copy Worksheets("Outliers").Range("A1").PasteSpecial _ Paste:=xlPasteValues, Operation:=xlNone, _ SkipBlanks:=False, Transpose:=False -- Regards, OssieMac "Tom Joseph" wrote: Worksheets("Outliers_1").Cells.Copy Worksheets("Outliers").Range("A1") Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lookin cell values, copy a range and paste it | Excel Programming | |||
Copy range in macro using paste special values | Excel Discussion (Misc queries) | |||
copy and paste values in a range | Excel Programming | |||
copy and paste values in a range | Excel Programming | |||
copy / paste values for certain range | Excel Programming |