Here is some code that I copied from a sample database that might give you some help. This was used to change the Min and Max values in by clicking a button. There are several good graph examples in this sample db. If you would like a copy of it, email me your email address and I will send it to you.<br><br>Private Sub btnUpdChart_Click()<br><br>On Error Resume Next<br>'-------------------------------------------------------------------<br>'This procedure sets the properties of the axes object to the values<br>'typed in the text boxes on the form. For instance, it uses the<br>'minimumscale text box to fill the minimumscale property of the axes<br>'object and so on. If text box has a null, it does not use it and thus<br>'avoids an error.<br>'-------------------------------------------------------------------<br><br>Me![graphorders].Object.Application.Chart.axes(2).minimumscale = _<br> CDbl(Me![minscale]) 'Set the minimum scale<br>Me![graphorders].Object.Application.Chart.axes(2).maximumscale = _<br> CDbl(Me![maxscale]) 'Set the maximum scale<br>Me![graphorders].Object.Application.Chart.axes(2).minorunit = _<br> CDbl(Me![minorunit]) 'Set the minor unit<br>Me![graphorders].Object.Application.Chart.axes(2).majorunit = _<br> CDbl(Me![majorunit]) 'Set the major unit<br><br>End Sub<br><br>Good Luck,<br>RDH <p>Ricky Hicks<br><a href=mailto: rdhicks@mindspring.com> rdhicks@mindspring.com</a><br><a href= > </a><br>