Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 775 Bytes

Excel.HasLinks.md

File metadata and controls

36 lines (26 loc) · 775 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
HasLinks property (Excel Graph)
vbagr10.chm66630
vbagr10.chm66630
Excel.HasLinks
71e0e494-a96a-53e5-5e38-92b3ce331076
04/11/2019
medium

HasLinks property (Excel Graph)

True if the specified chart has links to an external data source. Read-only Boolean.

Syntax

expression.HasLinks

expression Required. An expression that returns one of the objects in the Applies To list.

Example

This example clears cells A1:D4 on the datasheet if the chart has no links.

With myChart.Application 
 If .HasLinks = False Then 
 .DataSheet.Range("A1:D4").Clear 
 End If 
End With

[!includeSupport and feedback]