J
Jase
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
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