Why does macro one fail? While macro two works just fine.
Sub Macro1 ()
With Worksheets("Sheet1")
.Cells.Select
.Copy
.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ 'Fails here
:=False, Transpose:=False
End With
End Sub
Sub Macro2()
Cells.Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
Thanks,
John



