Syntax

expression.LinkedCell

expression A variable that represents a ControlFormat object.

Remarks

You cannot use this property with multiselect list boxes.

Example

This example adds a check box to worksheet one and links the check box value to cell A1.

Visual Basic for Applications
With Worksheets(1) Set cb = .Shapes.AddFormControl(xlCheckBox, 10, 10, 100, 10) cb.ControlFormat.LinkedCell = "A1" End With

See also: