I am trying to copy all the visible cells from a sheet, then paste everything but the formulas into a new sheet. My current code works fine, except it does not paste the charts onto the new sheet. Is there a way to do this?
Code:
Sheets("Original Sheet").Cells.SpecialCells(xlCellTypeVisible).Copy
With ThisWorkbook.Sheets("New Sheet").Range("A1")
.PasteSpecial xlPasteValuesAndNumberFormats
.PasteSpecial xlPasteformats
End With