Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. 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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 38 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |