Share via


Workbook.BreakLink Method (Excel)

Converts formulas linked to other Microsoft Excel sources or OLE sources to values.

Syntax

.BreakLink(Name, Type)

A variable that represents a Workbook object.

Parameters

Name

Required/Optional

Data Type

Description

Name

필수

String

The name of the link.

Type

필수

XlLinkType

The type of link.

Example

In this example, Microsoft Excel converts the first link (an Excel link type) in the active workbook.

참고

This example assumes at least one formula exists in the active workbook that links to another Excel source.

Sub UseBreakLink() 
 
 Dim astrLinks As Variant 
 
 ' Define variable as an Excel link type. 
 astrLinks = ActiveWorkbook.LinkSources(Type:=xlLinkTypeExcelLinks) 
 
 ' Break the first link in the active workbook. 
 ActiveWorkbook.BreakLink _ 
 Name:=astrLinks(1), _ 
 Type:=xlLinkTypeExcelLinks 
 
End Sub

참고 항목

개념

Workbook Object

Workbook Object Members