Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.charting,microsoft.public.excel.printing
Dmitry
 
Posts: n/a
Default How to print 15 embeded charts on two sheets at once?

Hello specialists!
How to print 15 embedded charts (without data cells) on two sheets at once?
Best regards,
Dima
elete


  #2   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.charting,microsoft.public.excel.printing
Jon Peltier
 
Posts: n/a
Default How to print 15 embeded charts on two sheets at once?

You don't want data cells. Does that mean you want each chart printed on its
own page? This cannot be done without a macro. Do you instead want just the
portion of the worksheet with the charts to be printed, but not the portion
of the sheet with the data? Select the range containing the charts, and set
the print area (File menu Print Area Set Print Area. Repeat for the
other worksheet, then select both (click on one, ctrl+click on the other),
File Print, choose the Active Sheets option to print both sheets at once.

If you want a whole bunch of charts printed on separate pages, make each
into a chart sheet (Chart menu Location As Chart), then use the
ctrl+click trick above to select the ones you want, and print them.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"Dmitry" wrote in message
...
Hello specialists!
How to print 15 embedded charts (without data cells) on two sheets at
once?
Best regards,
Dima
elete




  #3   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.charting,microsoft.public.excel.printing
Dmitry
 
Posts: n/a
Default How to print 15 embeded charts on two sheets at once?

Thanks Jon Peltier for your detailed reply!
Yes, I don't want data cells. Yes, I want one or two charts printed on
theirs own page. There is not a portion of the worksheet with the charts to
be printed, the charts are divided, surrounded by their data cells.
What should be the macro code?
Dima
"Jon Peltier" сообщил/сообщила в новостях
следующее: ...
You don't want data cells. Does that mean you want each chart printed on

its
own page? This cannot be done without a macro. Do you instead want just

the
portion of the worksheet with the charts to be printed, but not the

portion
of the sheet with the data? Select the range containing the charts, and

set
the print area (File menu Print Area Set Print Area. Repeat for the
other worksheet, then select both (click on one, ctrl+click on the other),
File Print, choose the Active Sheets option to print both sheets at

once.

If you want a whole bunch of charts printed on separate pages, make each
into a chart sheet (Chart menu Location As Chart), then use the
ctrl+click trick above to select the ones you want, and print them.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"Dmitry" wrote in message
...
Hello specialists!
How to print 15 embedded charts (without data cells) on two sheets at
once?
Best regards,
Dima
elete






  #4   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.charting,microsoft.public.excel.printing
Jon Peltier
 
Posts: n/a
Default How to print 15 embeded charts on two sheets at once?

The macro code would look like this:

Dim Wksht As Worksheet
Dim ChtOb As ChartObject
Dim sSheets(1 to 2) As String
Dim iSheet As Long

sSheets(1) = "Sheet 1"
sSheets(2) = "Sheet 2"

For iSheet = 1 to 2
Set Wksht = ThisWorkbook.Worksheets(sSheets(iSheet))
For Each ChtOb In Wksht.ChartObjects
ChtOb.Chart.PrintOut
Next
Next


- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______


"Dmitry" wrote in message
...
Thanks Jon Peltier for your detailed reply!
Yes, I don't want data cells. Yes, I want one or two charts printed on
theirs own page. There is not a portion of the worksheet with the charts
to
be printed, the charts are divided, surrounded by their data cells.
What should be the macro code?
Dima
"Jon Peltier" сообщил/сообщила в новостях
следующее: ...
You don't want data cells. Does that mean you want each chart printed on

its
own page? This cannot be done without a macro. Do you instead want just

the
portion of the worksheet with the charts to be printed, but not the

portion
of the sheet with the data? Select the range containing the charts, and

set
the print area (File menu Print Area Set Print Area. Repeat for the
other worksheet, then select both (click on one, ctrl+click on the
other),
File Print, choose the Active Sheets option to print both sheets at

once.

If you want a whole bunch of charts printed on separate pages, make each
into a chart sheet (Chart menu Location As Chart), then use the
ctrl+click trick above to select the ones you want, and print them.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"Dmitry" wrote in message
...
Hello specialists!
How to print 15 embedded charts (without data cells) on two sheets at
once?
Best regards,
Dima
elete








  #5   Report Post  
Posted to microsoft.public.excel,microsoft.public.excel.charting,microsoft.public.excel.printing
Dmitry
 
Posts: n/a
Default How to print 15 embeded charts on two sheets at once?

Thanks Jon Peltier for the macro code!
"Jon Peltier" сообщил/сообщила в новостях
следующее: ...
The macro code would look like this:

Dim Wksht As Worksheet
Dim ChtOb As ChartObject
Dim sSheets(1 to 2) As String
Dim iSheet As Long

sSheets(1) = "Sheet 1"
sSheets(2) = "Sheet 2"

For iSheet = 1 to 2
Set Wksht = ThisWorkbook.Worksheets(sSheets(iSheet))
For Each ChtOb In Wksht.ChartObjects
ChtOb.Chart.PrintOut
Next
Next


- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______


"Dmitry" wrote in message
...
Thanks Jon Peltier for your detailed reply!
Yes, I don't want data cells. Yes, I want one or two charts printed on
theirs own page. There is not a portion of the worksheet with the charts
to
be printed, the charts are divided, surrounded by their data cells.
What should be the macro code?
Dima
"Jon Peltier" сообщил/сообщила в

новостях
следующее: ...
You don't want data cells. Does that mean you want each chart printed

on
its
own page? This cannot be done without a macro. Do you instead want just

the
portion of the worksheet with the charts to be printed, but not the

portion
of the sheet with the data? Select the range containing the charts, and

set
the print area (File menu Print Area Set Print Area. Repeat for the
other worksheet, then select both (click on one, ctrl+click on the
other),
File Print, choose the Active Sheets option to print both sheets at

once.

If you want a whole bunch of charts printed on separate pages, make

each
into a chart sheet (Chart menu Location As Chart), then use the
ctrl+click trick above to select the ones you want, and print them.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"Dmitry" wrote in message
...
Hello specialists!
How to print 15 embedded charts (without data cells) on two sheets at
once?
Best regards,
Dima
elete












Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to set print range for a number of worksheets tntvk Excel Discussion (Misc queries) 5 December 12th 05 05:00 PM
My links (bar charts) print in b&w but they should be in colour Colourless in London Charts and Charting in Excel 1 August 22nd 05 09:41 PM
How do I print two sheets in same workbook duplex? Suess0112 Excel Worksheet Functions 1 August 18th 05 06:24 PM
How do I print all sheets of an Excel workbook from explorer? Dave Walker Excel Discussion (Misc queries) 1 January 28th 05 09:19 PM
Why will my Excel charts not print in color? cyncha Charts and Charting in Excel 2 December 5th 04 06:56 PM


All times are GMT +1. The time now is 05:11 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ╘2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"