Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]() I have a workbook with approx 120 charts spread out over 30 worksheets. Each worksheet has 4 charts on it. Each of the 4 charts has different data and Values. I would like them all to have the same fonts (made the mistake of not checkin when I produced the charts originaly ) but the X axis and coloring is different in each of the 4 charts. I have tried copying the "formats" but this changes everying in the chart but the data itself. Is there a macro to help with this or possibly something easier that I am over looking? Thanks -- Cweed ------------------------------------------------------------------------ Cweed's Profile: http://www.excelforum.com/member.php...o&userid=26765 View this thread: http://www.excelforum.com/showthread...hreadid=400179 |
#2
![]() |
|||
|
|||
![]()
Untested, but this is about how it would look:
Sub ChangeChartFonts() Dim sh As Object Dim ch As Chart Dim co As ChartObject ' chart sheets For Each ch In ActiveWorkbook.Charts ch.ChartArea.Font.Name = "Arial" Next ' chart objects embedded on sheets For Each sh In ActiveWorkbook.Sheets For Each co In sh.ChartObjects co.Chart.ChartArea.Font.Name = "Arial" Next Next End Sub - Jon ------- Jon Peltier, Microsoft Excel MVP Peltier Technical Services Tutorials and Custom Solutions http://PeltierTech.com/ _______ Cweed wrote: I have a workbook with approx 120 charts spread out over 30 worksheets. Each worksheet has 4 charts on it. Each of the 4 charts has different data and Values. I would like them all to have the same fonts (made the mistake of not checkin when I produced the charts originaly ) but the X axis and coloring is different in each of the 4 charts. I have tried copying the "formats" but this changes everying in the chart but the data itself. Is there a macro to help with this or possibly something easier that I am over looking? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
CHANGE SET-UP ON MULTIPLE SHEETS AT 1 TIME | Excel Discussion (Misc queries) | |||
HOW CAN I CHANGE SET-UP ON MULTIPLE SHEETS AT 1 TIME? | Setting up and Configuration of Excel | |||
How to change fonts in drop down list | Excel Discussion (Misc queries) | |||
change axis info on radar charts | Charts and Charting in Excel | |||
How do I change the default settings in charts? | Charts and Charting in Excel |