AxisDisplayUnitLabel
Multiple objects
Represents a unit label on the value axis in the specified chart. Unit labels are useful for charting large values
Using the DisplayUnitLabel Object
Use the DisplayUnitLabel property to return the DisplayUnitLabel object. The following example sets the caption for the value axis in myChart to “Millions” and turns off automatic font scaling.
With myChart.Axes(xlValue).DisplayUnitLabel
.Caption = "Millions"
.AutoScaleFont = False
End With