Print preview script halts

Hidden Dan

Board Regular
Joined
Dec 7, 2016
Messages
63
Friends,

I got this code to enable Print Preview of selected range. However, if pressing 'Close Preview' or even finishing printing I obtain an error. So apparently code contains a missing link.

I do need Print Preview dialogs because user should be able to modify printing options.

Code:
Sub Print_Range()

    With ActiveSheet.PrintPreview


        .PrintArea = "MyDuoRange"
        .Orientation = xlLandscape
        .PrintTitleRows = "$1:$2"
        
    End With
        
End Sub

What should be added to this code to make it run well ?


Thanks,
Dan
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Solved

Code:
Sub Print_Range()


With ActiveSheet
    .PageSetup.PrintArea = "Range_complete"
End With


Application.Dialogs(xlDialogPrintPreview).Show
        
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,325
Messages
6,124,252
Members
449,149
Latest member
mwdbActuary

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top