finding the scale on a chart

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I know how to set the scale on a chart with vba code but how would I find
(using vba code) what the scale is set to in a cahrt?
 
Hi,

This will return the maximum value of the value axis.

msgbox activechart.Axes(xlvalue).maximumscale

Cheers
Andy
 
Back
Top