Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have about 10 different worksheets all with the same number of rows
and columns of data and each worksheet is a different scenario of data. I want to be able to have the user select 2 non-contiguous ranges in an input box that will set the print area for all worksheets in the workbook. the first range I'm calling ISRng and the second range im calling BSRng. I'm having two problems: 1) I can only do one contiguous print range at a time. I know the syntax .PrintArea = ISRng.Address(external:=True),BSRng.Address(extern al:=True) is not correct, but I'm not sure what the correct syntax to define the print area as two non-contiguous ranges 2) I cannot get this to work for all worksheets in the workbook. I want the user to be able to select the ranges from whatever the active sheet is, and have those non-contiguous ranges apply to all sheets in the workbook Can someone please help? Thanks, Joshua Sub PrintMacro() Dim WS_Count As Integer Dim I As Integer Dim ISRng As Range Dim BSRng As Range On Error Resume Next Set ISRng = Application.InputBox _ (prompt:="Specify a range:", Type:=8) If ISRng Is Nothing Then Exit Sub MsgBox "You selected the following range for the income statement" & ISRng.Address Set BSRng = Application.InputBox _ (prompt:="Specify a range:", Type:=8) If BSRng Is Nothing Then Exit Sub MsgBox "You selected the following range for the income statement" & BSRng.Address WS_Count = ActiveWorkbook.Worksheets.Count For I = 1 To WS_Count Worksheets(I).Activate Application.ScreenUpdating = False With ActiveSheet.PageSetup .PrintArea = ISRng.Address(external:=True),BSRng.Address(extern al:=True) End With Next I End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Displaying different worksheets based on user input | Excel Programming | |||
Trying to work with User-selected non-contiguous ranges | Excel Programming | |||
Capture user input into xldialog print | Excel Programming | |||
User Input - sheet and ranges | Excel Programming | |||
set up a pause in a print macro for user input | Excel Programming |