我创建了OptionButton
一个
For Each c In Selection
Dim right As Range
Set right = c.Offset(0, 1)
Button = ActiveSheet.OptionButtons.Add(c.Left, c.Top, c.Width, c.Height)
With Button
.LinkedCell = right.Address ' has no effect
.Characters.Text = ""
.Name = right.Address
End With
Next
我想更改LinkedCell
新创建的按钮的,但该With
块没有效果。
我究竟做错了什么?