Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Changing the Axis Scale.

Changing the Axis Scale

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


1

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:

  1. Right-click on the axis whose scale you want to change. Excel displays a Context menu for the axis.
  2. Choose Format Axis from the Context menu. (If there is no Format Axis choice, then you did not right-click on an axis in step 1.) Excel displays the Format Axis dialog box.
  3. Make sure Axis Options is clicked at the left of the dialog box. (See Figure 1.)
  4. Figure 1. The Axis Options of the Format Axis dialog box.

  5. Adjust the scale settings (top of the dialog box—Minimum, Maximum, etc.) as desired.
  6. Click on OK.

In Excel 2013 and later versions, the steps are different:

  1. Right-click on the axis whose scale you want to change. Excel displays a Context menu for the axis.
  2. Choose Format Axis from the Context menu. (If there is no Format Axis choice, then you did not right-click on an axis in step 1.) Excel displays the Format Axis task pane at the right side of the screen.
  3. Make sure Axis Options area is expanded. (Click on Axis Options and then the Axis Options icon.) (See Figure 2.)
  4. Figure 2. The Axis Options in the Format Axis task pane.

  5. Adjust the Bounds and Units settings, as desired. These, along with a couple of other settings in the task pane, determine the scale used to display your chart.
  6. Close 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.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Displaying a Live Word Count

You can use Word's built in tools to figure out how many words are in your document. If you want a real-time, constantly ...

Discover More

Matching Formatting when Concatenating

Convert a numeric value to text and you may be surprised by how Excel displays the value. Here's a run-down on exactly ...

Discover More

Using the Status Bar

When developing a macro, you may want to display on the status bar what the macro is doing. Here's how to use this ...

Discover More

Best-Selling VBA Tutorial for Beginners Take your Excel knowledge to the next level. With a little background in VBA programming, you can go well beyond basic spreadsheets and functions. Use macros to reduce errors, save time, and integrate with other Microsoft applications. Fully updated for the latest version of Office 365. Check out Microsoft 365 Excel VBA Programming For Dummies today!

More ExcelTips (ribbon)

Locking Callouts to a Graph Location

If you add callouts using the drawing tools in Excel, you may have noticed that they don't always stay where you expect ...

Discover More

Printing a Chart Across Multiple Pages

Wouldn't it be great to have your huge charts print out on multiple pieces of paper that you could then piece together? ...

Discover More

Reliable Display of X-Y Values in a Chart

Excel can display both values and names for data points in a chart, when you hover the mouse over the data point. This ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 3 + 1?

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


This Site

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.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.