Axis.MajorUnitIsAuto property (Excel)
True if Microsoft Excel calculates the major units for the value axis. Read/write Boolean.
expression.MajorUnitIsAuto
expression A variable that represents an Axis object.
Setting the MajorUnit property sets this property to False.
This example automatically sets the major and minor units for the value axis on Chart1.
With Charts("Chart1").Axes(xlValue)
.MajorUnitIsAuto = True
.MinorUnitIsAuto = True
End With
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.