zoom button is blanked out

C

Carol

I am using Office 2000 SP3. I have problem zooming in the
charts in Excel. The zoom button is grey out on both
formatting bar and under view -> zoom. In order to zoom
in, I have to de-select "sized with window" under view.
Unfortunately, I have more than 10 charts in that
workbook. How can I change the setting at once?
 
D

Debra Dalgleish

You can set them all with a macro:

Sub SetChart()
Dim ch As Chart
For Each ch In ActiveWorkbook.Charts
ch.SizeWithWindow = False
Next ch
End Sub
 
J

Jon Peltier

Without a printer installed (or if Windows can't find the printer, for
example if a network printer is turned off), this selection is unavailable.

- Jon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top