jim may
Well-known Member
- Joined
- Jul 4, 2004
- Messages
- 7,486
In my Rng1 - Col A and Col F - I have formulas;
My Rng1.copy line is pasting these as Values into my destination sheet, not a formulas. What's Up? Can someone spot the problem?
Thanks,
My Rng1.copy line is pasting these as Values into my destination sheet, not a formulas. What's Up? Can someone spot the problem?
Thanks,
Code:
Set rng = ActiveSheet.AutoFilter.Range
rng.AutoFilter Field:=12, Criteria1:="<>"
Set Rng1 = rng.Offset(1).SpecialCells(xlCellTypeVisible)
Nr = Worksheets("Data-CompletedItems").Range("B" & Rows.Count).End(xlUp).Row + 1
'Set destrng = Sheets("Data-CompletedItems").Range("A" & Nr)
Rng1.Copy Destination:=Sheets("Data-CompletedItems").Range("A" & Nr)