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

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