Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
I'm using excel 2007 Service Pack 2.
Trying to change part of the chart title. No problem in previous versions of Exel. Now the whole Title changes - not just part of it. Following is sample code: Sub test() Workbooks("Book1.xlsx").Activate Charts("Chart1").Select Title1 = "New Title1" Title2 = "New Title2" Title = Title1 & Chr(10) & Title2 ActiveChart.ChartTitle.Text = Title ActiveChart.ChartTitle.Select With ActiveChart.ChartTitle With .Characters(Start:=1, Length:=Len(Title1)).Font .Name = "Arial" .FontStyle = "Normal" .Size = 20 End With With .Characters(Start:=Len(Title1) + 1, Length:=Len(Title2)).Font .Name = "Arial" .FontStyle = "Bold" .Size = 12 End With End With End Sub |
#2
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
Hi,
This is a known bug in 2007. Work around is to use a textbox. Cheers Andy -- Andy Pope, Microsoft MVP - Excel http://www.andypope.info "nzadmin" wrote in message ... I'm using excel 2007 Service Pack 2. Trying to change part of the chart title. No problem in previous versions of Exel. Now the whole Title changes - not just part of it. Following is sample code: Sub test() Workbooks("Book1.xlsx").Activate Charts("Chart1").Select Title1 = "New Title1" Title2 = "New Title2" Title = Title1 & Chr(10) & Title2 ActiveChart.ChartTitle.Text = Title ActiveChart.ChartTitle.Select With ActiveChart.ChartTitle With .Characters(Start:=1, Length:=Len(Title1)).Font .Name = "Arial" .FontStyle = "Normal" .Size = 20 End With With .Characters(Start:=Len(Title1) + 1, Length:=Len(Title2)).Font .Name = "Arial" .FontStyle = "Bold" .Size = 12 End With End With End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to hide a chart title, but keep the title in the chart | Charts and Charting in Excel | |||
How do I put title on top of chart already made in Excel? | Charts and Charting in Excel | |||
Excel chart - how to assign the file name in the chart title? | Charts and Charting in Excel | |||
Pasting Objects into Chart title and Axis title | Charts and Charting in Excel | |||
Excel Chart y-axis title | Excel Discussion (Misc queries) |