+ Reply to Thread
Results 1 to 3 of 3

Making "Selection" the default in print dialog box?

Hybrid View

  1. #1
    Registered User
    Join Date
    03-09-2010
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2007
    Posts
    18

    Making "Selection" the default in print dialog box?

    19 out of 20 times, when I print from Excel, I choose to print the "selection" as opposed to the worksheet. Is there any way to make that the default setting?

    Thanks
    Pradhan

  2. #2
    Forum Expert Palmetto's Avatar
    Join Date
    04-04-2007
    Location
    South Eastern, USA
    MS-Off Ver
    XP, 2007, 2010
    Posts
    3,978

    Re: Making "Selection" the default in print dialog box?

    I may be in error but, as far as I know, you cannot set this. You will have to use a macro to set the print area to the selection.

    Something along the lines of:
    Option Explicit
    
    Sub Print_Selection()
    
        With ActiveSheet
            .PageSetup.PrintArea = ""
            .PageSetup.PrintArea = Selection.Address
        End With
    
    End Sub
    Palmetto

    Do you know . . . ?

    You can leave feedback and add to the reputation of all who contributed a helpful response to your solution by clicking the star icon located at the left in one of their post in this thread.

  3. #3
    Registered User
    Join Date
    03-09-2010
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2007
    Posts
    18

    Re: Making "Selection" the default in print dialog box?

    Thanks very much...too bad tho about not being able to set it as a default setting.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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