Skip to content

Latest commit

 

History

History
48 lines (28 loc) · 1011 Bytes

Word.datalabels.showrange.md

File metadata and controls

48 lines (28 loc) · 1011 Bytes
title keywords f1_keywords ms.assetid ms.date ms.localizationpriority
DataLabels.ShowRange property (Word)
vbawd10.chm207489005
vbawd10.chm207489005
79789465-c1f7-c3ad-7838-b1d795e6b997
06/08/2017
medium

DataLabels.ShowRange property (Word)

Set to True to display the Value From Cells range field in all the chart data labels for a specified chart. Set to False to hide that field. Read/write Boolean.

Syntax

expression.ShowRange

expression A variable that represents a DataLabels object.

Example

The following example displays the Value From Cells range field for all the data labels of the first series in the first chart.

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 .Chart.SeriesCollection(1).DataLabels.ShowRange = True 
 End If 
End With

Property value

BOOL

See also

DataLabels Object

[!includeSupport and feedback]