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

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
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,834
Messages
6,121,877
Members
449,056
Latest member
ruhulaminappu

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