Skip to content

Latest commit

 

History

History
57 lines (30 loc) · 1.18 KB

PowerPoint.TickLabels.NumberFormatLinked.md

File metadata and controls

57 lines (30 loc) · 1.18 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
TickLabels.NumberFormatLinked property (PowerPoint)
vbapp10.chm719006
vbapp10.chm719006
PowerPoint.TickLabels.NumberFormatLinked
df60a8dc-85be-7e7e-68ea-0a60a60ef977
06/08/2017
medium

TickLabels.NumberFormatLinked property (PowerPoint)

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

Note

Although the following code applies to Microsoft Word, you can readily modify it to apply to PowerPoint.

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

[!includeSupport and feedback]