Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I can not figure out how to get this code to paste special the values only
instead of the formula. Any suggestions? Sub CopyFindPaste() Dim RngToCopy As Range Dim DestCell As Range With Worksheets("Sheet1") Set RngToCopy = .Range("O25:W33") End With With Worksheets("Sheet1") Set DestCell = .Range("AF3") End With Do If IsEmpty(DestCell.Value) Then Exit Do Else Set DestCell = DestCell.Offset(10, 0) End If Loop RngToCopy.Copy _ Destination:=DestCell End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro - Auto Paste Special | Excel Discussion (Misc queries) | |||
Paste Special Macro - can't undo | New Users to Excel | |||
Copy & Paste Special Macro | Excel Discussion (Misc queries) | |||
Copy Paste Special Macro | Excel Discussion (Misc queries) | |||
Paste Special in a macro | Excel Worksheet Functions |