Written by Allen Wyatt (last updated July 12, 2025)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365
Excel includes an impressive graphing capability that can turn the dullest data into outstanding charts, complete with all sorts of whiz-bang do-dads to amaze your friends and confound your enemies. While Excel can automatically handle many of the mundane tasks associated with turning raw data into a chart, you may still want to change some elements of your chart.
For instance, you may want to change the scale Excel uses along an axis of your chart. (The scale automatically chosen by Excel may not represent the entire universe of possibilities you want conveyed in your chart.) You can change the scale used by Excel by following these steps in Excel 2007 or Excel 2010:
Figure 1. The Axis Options of the Format Axis dialog box.
In Excel 2013 and later versions, the steps are different:
Figure 2. The Axis Options in the Format Axis task pane.
Note that in order to adjust the Bounds and Units settings, Excel needs to recognize the data in an axis as a range of values (e.g. dates). There will not be the option to change Bounds and Units if the data is recognized as discreet values by Excel (e.g. item names).
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9267) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Changing the Axis Scale.
Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!
Want to change the groupings used by Excel when it creates pie charts? Your options are limited, as you learn in this tip.
Discover MoreTitles can be a great addition to any chart. They help provide explanatory information about the information in the ...
Discover MoreCreate a chart in Excel and you can then modify it almost any way you desire. One modification is to adjust the color or ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2025-07-21 07:52:58
RICK KEEVILL
or use a macro
Sub UpdteAxis()
MinChartNumber = Application.WorksheetFunction.Min(Range("A2").CurrentRegion)'OR USE SELECTION
MaxChartNumber = Application.WorksheetFunction.Max(Range("A2").CurrentRegion)'OR USE SELECTION
For Each cht In ActiveSheet.ChartObjects
cht.Chart.Axes(xlValue).MinimumScale = 0 'or change to MinChartNumber if you don't want 0 as starting point
cht.Chart.Axes(xlValue).MaximumScale = MaxChartNumber
Next
End Sub
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments