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

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.