This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
i have some graphs in excel that happens to have title with diffirent placement than other graphs, in matters of official report it bothers me, is there a way to edit charts title and legend in numbers or using module? talking in bulk numbers for multiple graphs so manual editing is undesired.
Solved! Go to Solution.
Sub StandardizeChartsOnSheet()
Dim chtObj As ChartObject
Dim cht As Chart
For Each chtObj In ActiveSheet.ChartObjects
Set cht = chtObj.Chart
' Ensure there is a title
cht.HasTitle = True
' Standardize title position (adjust as needed)
With cht.ChartTitle
.Left = 10 ' distance from left edge of chart
.Top = 5 ' distance from top edge of chart
End With
' Standardize legend position
If cht.HasLegend Then
cht.Legend.Position = xlLegendPositionBottom
End If
Next chtObj
End Sub
Try the above macro.
It will help you to standardize chart title and legend placement.
If this helped please feel free to mark it as a solution and give kudos 👍
Sub StandardizeChartsOnSheet()
Dim chtObj As ChartObject
Dim cht As Chart
For Each chtObj In ActiveSheet.ChartObjects
Set cht = chtObj.Chart
' Ensure there is a title
cht.HasTitle = True
' Standardize title position (adjust as needed)
With cht.ChartTitle
.Left = 10 ' distance from left edge of chart
.Top = 5 ' distance from top edge of chart
End With
' Standardize legend position
If cht.HasLegend Then
cht.Legend.Position = xlLegendPositionBottom
End If
Next chtObj
End Sub
Try the above macro.
It will help you to standardize chart title and legend placement.
If this helped please feel free to mark it as a solution and give kudos 👍
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 25 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 49 | |
| 28 | |
| 23 | |
| 23 |