Formatting charts to not show large numbers but still scale

dorokhin

New Member
Joined
Jul 23, 2007
Messages
3
I'm having some trouble getting my charts to show up like I want them.

I'm graphing percentage increases and generally the numbers are between 60 and 150. However, sometimes there's numbers like 200, 300 and a small few numbers as high as 5000.

I want my graph to auto scale the y axis if the numbers are reasonably small (most of them are) but I'd like to set a cut off point at the high end if the data set being graphed includes one of the outliers. So I want it to auto scale but not any higher than, say, 300. Is there any way to do this?
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
How about using another column to capture your data IF it meets a certain criteria (such as being below the limit you decide for outlying values) and base your chart on that ?

For example, let's say your data of percentage increases is in Col A, starting on row 2.
In B1, input the highest value you want to chart.
Then in B2, insert this formula and copy down as required.
Code:
=if(a1>$b$1,$b$1,a1)
Then set your data series to use Col B instead of Col A.
 
Upvote 0

Forum statistics

Threads
1,215,053
Messages
6,122,888
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top