Pinterest Pixel

Add Chart Title Using Macros In Excel

Did you know that you can programatically make changes to Excel Charts? Yes you can! Let us... read more

Download Excel Workbook
Bryan
Posted on

Overview

Add Chart Title Using Macros In Excel | MyExcelOnline

Did you know that you can programatically make changes to Excel Charts? Yes you can! Let us try updating a chart by adding the chart title using Excel Macros!

Make sure your Excel has the Developer Tab enabled following this tutorial.

I explain how you can do this below step by step!

What does it do?

Adds a title to the selected chart based on user input

Copy Source Code:


'Make sure you have selected your chart first
Sub AddChartTitle()

Dim titleText As Variant

On Error GoTo Last
'Get the Chart Title from the user
titleText = InputBox("Please enter the chart title", "Chart Title Input")

'Now set the title on the selected chart
ActiveChart.SetElement (msoElementChartTitleAboveChart)
ActiveChart.ChartTitle.Text = titleText
Last: Exit Sub

End Sub

Final Result: 

Add Chart Title Using Macros In Excel

Exercise Workbook:

Add Chart Title Using Macros In Excel | MyExcelOnline

Download excel workbookAdd-Chart-Title.xlsm


This is our starting chart:

Add Chart Title Using Macros In Excel

STEP 1: Go to Developer > Code > Visual Basic

Add Chart Title Using Macros In Excel | MyExcelOnline

 

STEP 2: Paste in your code and Select Save. Close the window afterwards.

Add Chart Title Using Macros In Excel

 

STEP 3: Let us test it out!

Open the sheet containing the chart. Go to Developer > Code > Macros

Add Chart Title Using Macros In Excel | MyExcelOnline

 

Make sure your chart and macro are selected. Click Run.

Add Chart Title Using Macros In Excel

Type in the title you want for your chart. Click OK.

Add Chart Title Using Macros In Excel

With just that, you have modified the chart title!Add Chart Title Using Macros In Excel

 

How to Add Chart Title Using Macros In Excel

 

101 Macros Book

If you like this Excel tip, please share itEmail this to someone

email

Pin on Pinterest

Pinterest

Share on Facebook

Facebook

Tweet about this on Twitter

Twitter

Share on LinkedIn

Linkedin

Add Chart Title Using Macros In Excel | MyExcelOnline
Add Chart Title Using Macros In Excel | MyExcelOnline
Bryan

Bryan is a best-selling book author of the 101 Excel Series paperback books.

Get Video Training

Advance your Microsoft Excel & Office Skills with the MyExcelOnline Academy!

Dramatically Reduce Repetition, Stress, and Overtime!
Exponentially Increase Your Chances of a Promotion, Pay Raise or New Job!

Learn in as little as 5 minutes a day or on your schedule.

Learn More!