VBA帮助 - 需要将文本从特定单元格返回到OptionButton

时间:2014-12-02 09:46:48

标签: excel vba if-statement

我需要帮助才能从特定单元格返回文本,如果文本与选项按钮的配置匹配,则此选项按钮将设置为true。

我试着使用下面的代码:

Dim texto1 As String
texto1 = "Testando Texto"
If Range("D3").Value = texto1 Then
    OptionButton1.Value = True
End If

1 个答案:

答案 0 :(得分:1)

对于选项按钮(工作表上的表单控件):

ActiveSheet.Shapes("Option Button 1").ControlFormat.Value = True

对于选项按钮(工作表上的ActiveX控件):

ActiveSheet.OptionButton1.Value = True

对于选项按钮(在表单上):

Me.OptionButton1.Value = True

仅供参考:如果您想在问题的标题中使用Me.OptionButton1.Caption = your string,则可以使用{{1}}。