CrossesAt Property Example

This example sets the category axis in Chart1 to cross the value axis at value 3.

With Charts("Chart1").Axes(xlValue)
    .Crosses = xlCustom
    .CrossesAt = 3
End With