Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi. Is there are way to set the print area based on the cells that are
currently selected/highlighted? So, this time I have the range A1:D27 highlighted and I want that to be the print area, but next time I want B9:KE102 to be the print area. I've figured out how to have a macro select the area I want, but don't know how to have a "flexible" print area. thanks in advance |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe you don't have to change the print area??
If you're selecting the range, you could use: Selection.printout 'preview:=true or without selecting: with worksheets("somenamehere") .range("a1:d27").printout .range("b9:ke102").printout end with wrote: Hi. Is there are way to set the print area based on the cells that are currently selected/highlighted? So, this time I have the range A1:D27 highlighted and I want that to be the print area, but next time I want B9:KE102 to be the print area. I've figured out how to have a macro select the area I want, but don't know how to have a "flexible" print area. thanks in advance -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks guys. Here's where I'm at... I have this line of code below,
and I need to know what term/code I can put after the = that will refer to the selected cells. ActiveSheet.PageSetup.PrintArea = [what can I put here to refer to my selected cells?] Dave Peterson wrote: Maybe you don't have to change the print area?? If you're selecting the range, you could use: Selection.printout 'preview:=true or without selecting: with worksheets("somenamehere") .range("a1:d27").printout .range("b9:ke102").printout end with wrote: Hi. Is there are way to set the print area based on the cells that are currently selected/highlighted? So, this time I have the range A1:D27 highlighted and I want that to be the print area, but next time I want B9:KE102 to be the print area. I've figured out how to have a macro select the area I want, but don't know how to have a "flexible" print area. thanks in advance -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
After you select the cells
File-print- Print what - selection egroups.com... Hi. Is there are way to set the print area based on the cells that are currently selected/highlighted? So, this time I have the range A1:D27 highlighted and I want that to be the print area, but next time I want B9:KE102 to be the print area. I've figured out how to have a macro select the area I want, but don't know how to have a "flexible" print area. thanks in advance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Setting TAB to navigate to selected Cells Only | Excel Worksheet Functions | |||
Format worksheet to view only the print area cells in Excel | Excel Discussion (Misc queries) | |||
Active cell counting in particular print page (one sheet having different print area) | Excel Worksheet Functions | |||
Sorting Area with Merged Cells | New Users to Excel | |||
Can't Clear Print Area | Excel Discussion (Misc queries) |