organizing embedded charts on 1 sheet

PaulRuddy

New Member
Joined
Jun 20, 2008
Messages
3
I have recently written a macro to measure prouctivity on a sales v labor basis, my problem is I cant figure out how to get the charts to organize themselves so I dont have to.

Basically at the moment the are embedding themselves on top of each other like this

output.png


but I need them to look like this on 1 page

outputwanted.png


any idea on how I can do this?
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
I can see how that resizes one chart but how would I resize 8 charts and get them in the order I require on a 1 page sheet?
 
Upvote 0
Doesn't this help?

Code:
Sub LineUpMyCharts()
    Dim MyWidth As Single, MyHeight As Single
    Dim NumWide As Long
    Dim iChtIx As Long, iChtCt As Long

    MyWidth = 200
    MyHeight = 150
    NumWide = 3

    iChtCt = ActiveSheet.ChartObjects.Count
    For iChtIx = 1 To iChtCt
        With ActiveSheet.ChartObjects(iChtIx)
            .Width = MyWidth
            .Height = MyHeight
            .Left = ((iChtIx - 1) Mod NumWide) * MyWidth
            .Top = Int((iChtIx - 1) / NumWide) * MyHeight
         End With
    Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,421
Messages
6,119,392
Members
448,891
Latest member
tpierce

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top