I have the following macro and it works but it copies the formula instead of the values.
I need help in editing the macro--I have researched this problem and the solution is PasteSpecial but I do not know how to incorporate into this code??
Here is the macro:
Sub RowCopy()
Dim rngFind As Range
With Worksheets("Summary").UsedRange
Set rngFind = .Find("Totals", _
LookIn:=xlValues, _
LookAt:=xlWhole, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=True)
End With
rngFind.EntireRow.Copy _
Destination:=Worksheets("Sheet3").Range("A1")
End Sub