Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
James Hamilton
 
Posts: n/a
Default Multiple Graphs - Resize All

Hi my learned friends,

I have 10 small graphs on a worksheet, and they are all of slightly
differing widths and heights. Is there a way whereby I can select them all
and resize them all in one go?

Many thanks.
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Multiple Graphs - Resize All

You can click on the first to select it.
Then ctrl click on the rest of them

When they're all selected, you can resize them the way you want.

James Hamilton wrote:

Hi my learned friends,

I have 10 small graphs on a worksheet, and they are all of slightly
differing widths and heights. Is there a way whereby I can select them all
and resize them all in one go?

Many thanks.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Multiple Graphs - Resize All

And you could use a little macro to make them all the same size.

Option Explicit
Sub testme()

Dim myChartObj As ChartObject
Dim mstrChartObj As ChartObject
Dim wks As Worksheet

Set wks = ActiveSheet

With wks
Set mstrChartObj = .ChartObjects("chart 1")

For Each myChartObj In ActiveSheet.ChartObjects
With myChartObj
.Width = mstrChartObj.Width
.Height = mstrChartObj.Height
End With
Next myChartObj
End With
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

James Hamilton wrote:

Hi my learned friends,

I have 10 small graphs on a worksheet, and they are all of slightly
differing widths and heights. Is there a way whereby I can select them all
and resize them all in one go?

Many thanks.


--

Dave Peterson
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
Multiple Graphs Ross Excel Discussion (Misc queries) 2 November 23rd 05 05:32 PM
Resize Multiple Graphs at Once James Hamilton Excel Discussion (Misc queries) 4 June 7th 05 01:12 AM
How do I put multiple graphs on one axis? TheDud Charts and Charting in Excel 1 April 11th 05 04:22 AM
resize chart on copyo meyerse Charts and Charting in Excel 1 March 26th 05 07:41 AM
graphs from multiple worksheet : query Lia Charts and Charting in Excel 1 January 8th 05 04:49 AM


All times are GMT +1. The time now is 02:25 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"