I have used the folowing code to create a graph in VBASub Macro1() Dim c As Excel.Chart, a As Worksheet, co As ChartObjects Set a = Worksheets("Regional Issue Graphs") Set co = a.ChartObjects Set c = co.Add(60, 60, 300, 300).Chart co.Select c.ChartWizard Source:="North", HasLegend:=Falsehowever I am unable to write further code to which will allow me to alter the font size of the axies of the graph I want to create, can anyone help?