Hi,
Its about 5 years since I did any VBA. How do I copy the contents of one worksheet into another including formats and values ? Here is what I have so far. Thanks
Kaps
Its about 5 years since I did any VBA. How do I copy the contents of one worksheet into another including formats and values ? Here is what I have so far. Thanks
Kaps
HTML:
Sub copy_sheet()
ActiveSheet.CopyWith ActiveWorkbook .SaveAs Filename:=Environ("TEMP") & "\New1.xls", FileFormat:=5153 .Close SaveChanges:=FalseEnd With
End Sub