+ Reply to Thread
Results 1 to 7 of 7

Label Chart Title & Axes

Hybrid View

  1. #1
    Registered User
    Join Date
    04-09-2013
    Location
    Singapore
    MS-Off Ver
    Microsoft Office Pro Plus or Excel 2007
    Posts
    76

    Label Chart Title & Axes

    Using Excel 2007.

    I tried the below but doesn't work. Thank you

    Sub Title()

    With ActiveChart.HasTitle = True
    .ChartTitle.Text = "Total Productivity"
    End With

    With ActiveChart.Axes(xlCategory, 1)
    .HasTitle = True
    .AxisTitle.Text = "Productivity Levels"
    End With

    With ActiveChart.Axes(x1Category, 2)
    .HasTitle = True
    .AxisTitle.Text = "Change in employment share, percentage points"
    End With

    End Sub

  2. #2
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: Label Chart Title & Axes

    Hello,

    there are several problems with your code.

    You need to properly reference the chart and its elements. The first With block is not referencing the correct object. Also, there is a "1" instead of an "l" in "With ActiveChart.Axes(x1Category, 2)".

    Details matter. You need to be aware of what you type. Excel will not tolerate typos. If you can't trust your typing skills, use Option Explicit above your code. Then these typing mistakes will be picked up by the compiler before it even tries to run the code.

    Without context it is hard to figure out what you want to do, but you can set the chart title and the primary and secondary X axis titles with this code:

    Option Explicit
    
    Sub myMacro()
    Dim myChart As Chart
    
    Set myChart = ActiveSheet.ChartObjects("Chart 1").Chart
    
    With myChart
    .HasTitle = True
    .ChartTitle.Text = "Total Productivity"
    End With
    
    With myChart.Axes(xlCategory, 1)
    .HasTitle = True
    .AxisTitle.Text = "Productivity Levels"
    End With
    
    
    With myChart.Axes(xlCategory, 2)
    .HasTitle = True
    .AxisTitle.Text = "Change in employment share, percentage points"
    End With
    End Sub
    At least that runs on a chart with data on the primary and secondary axis in my tests. If it is not what you need, please post a sample file that represents your data structure and chart. Replace confidential data with dummy data.

    cheers, teylyn

  3. #3
    Registered User
    Join Date
    04-09-2013
    Location
    Singapore
    MS-Off Ver
    Microsoft Office Pro Plus or Excel 2007
    Posts
    76

    Re: Label Chart Title & Axes

    Hi Teylyn

    Thanks for the reply. Find attached a sample file.

    So basically, I want to add the axes title for the horizontal and vertical axes and the title for the chart.

    In the file, there is only Chart1, but in reality I have many chart sheets, so the macro must be able to repeat the operation for any chart sheet that I open.

    Thank you
    Attached Files Attached Files

  4. #4
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: Label Chart Title & Axes

    Do you want the macro to run on an individual sheet or on all charts in the workbook?

  5. #5
    Registered User
    Join Date
    04-09-2013
    Location
    Singapore
    MS-Off Ver
    Microsoft Office Pro Plus or Excel 2007
    Posts
    76

    Re: Label Chart Title & Axes

    Hi,

    Just on an individual sheet. But the macro should run on the active chart sheet, without me having to change anything, like the Chart sheet name, on the macro. Thank you

    Quote Originally Posted by teylyn View Post
    Do you want the macro to run on an individual sheet or on all charts in the workbook?

  6. #6
    Forum Expert teylyn's Avatar
    Join Date
    10-28-2008
    Location
    New Zealand
    MS-Off Ver
    Excel 365 Insider Fast
    Posts
    11,372

    Re: Label Chart Title & Axes

    Are all your charts on chart sheets? Or do you have charts in normal worksheets? The code will differ.

    (it's rather late at night where I live, so I will be off-line for a few hours. Other folks may be able to help in the mean time)

  7. #7
    Registered User
    Join Date
    04-09-2013
    Location
    Singapore
    MS-Off Ver
    Microsoft Office Pro Plus or Excel 2007
    Posts
    76

    Re: Label Chart Title & Axes

    Hi

    Yes. All the charts are in chart sheets. Thank you

    Quote Originally Posted by teylyn View Post
    Are all your charts on chart sheets? Or do you have charts in normal worksheets? The code will differ.

    (it's rather late at night where I live, so I will be off-line for a few hours. Other folks may be able to help in the mean time)

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Label Chart Axes & Title
    By Apple1 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-02-2014, 11:11 PM
  2. Excel 2007 : Label chart axes
    By contextions in forum Excel General
    Replies: 5
    Last Post: 03-17-2009, 11:50 PM
  3. [SOLVED] text boxes that label axes in line/scatter graphs
    By Peg in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 08-09-2006, 04:55 AM
  4. CHART AxES TITLE
    By yorkielover02 in forum Excel General
    Replies: 1
    Last Post: 02-03-2005, 06:06 PM
  5. plotting a chart title on 3 axes of a surface plot
    By gosetty in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-07-2005, 08:07 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1