TickLabels.NumberFormatLinked property (Word)

True if the number format is linked to the cells (so that the number format changes in the labels when it changes in the cells). Read/write Boolean.

Syntax

expression.NumberFormatLinked

expression A variable that represents a 'TickLabels' object.

Example

The following example links the number format for tick-mark labels to its cells for the value axis of the first chart in the active document.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 .Chart.Axes(xlValue).TickLabels.NumberFormatLinked = True 
 End If 
End With

See also

TickLabels Object

Support and feedback

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.