hello,
i m using below code to create new sheet and paste data here and print out the copies.
i want after print the data delete the new created sheet automatically![]()
Sub Copy_Entry_Data() Sheets("ENTRY").Select Range("A9:Y300").Select Range(Selection, Selection.End(xlDown)).Select Selection.Copy Worksheets.Add(After:=Worksheets(Worksheets.count)).Name = "Print" Sheets("Print").Select ActiveSheet.Paste Adjust_Entry_Columns Hide_Column_With_CountA_ENTRY Range("D1:D300").SpecialCells(xlCellTypeBlanks).EntireRow.Delete Range("C1").Select ActiveWindow.SelectedSheets.PrintOut Copies:=1 End Sub
thanx
Bookmarks