+ Reply to Thread
Results 1 to 3 of 3

Delete the new sheet after printout

Hybrid View

  1. #1
    Forum Contributor HaroonSid's Avatar
    Join Date
    02-28-2014
    Location
    india
    MS-Off Ver
    Excel 2013
    Posts
    2,095

    Post Delete the new sheet after printout

    hello,
    i m using below code to create new sheet and paste data here and print out the copies.
    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
    i want after print the data delete the new created sheet automatically

    thanx
    Last edited by HaroonSid; 09-18-2014 at 01:42 AM.
    Use Code-Tags for showing your code :
    Please mark your question Solved if there has been offered a solution that works fine for you
    If You like solutions provided by anyone, feel free to add reputation using STAR *

  2. #2
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Dellete the new sheet after printout

    Hi, HaroonSid,

    maybe add
    ActiveSheet.Delete
    or make the information not appear by using
    Application.DisplayAlerts = False
    ActiveSheet.Delete
    Application.DisplayAlerts = True
    Ciao,
    Holger
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for you

  3. #3
    Forum Contributor HaroonSid's Avatar
    Join Date
    02-28-2014
    Location
    india
    MS-Off Ver
    Excel 2013
    Posts
    2,095

    Re: Delete the new sheet after printout

    Very Thanx,
    HaHoBe
    works fine, +1 will rep

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Print out certain pages in an excel sheet by PrintOut Method
    By bhayu in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 02-13-2014, 07:11 PM
  2. PrintOut VBA
    By Pavczech in forum Excel General
    Replies: 1
    Last Post: 04-27-2011, 07:37 AM
  3. [SOLVED] no #VALUE! to printout
    By garyww in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-15-2006, 11:19 AM
  4. Printout
    By Martin Fishlock in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 01-06-2006, 12:00 PM
  5. Printout a number of sheet copies using Number fron cell?
    By ibmerlin in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-13-2005, 02:00 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1