メインの Excel ページには、Yes/No オプションに使用したい OptionButton1 と OptionButton2 という 2 つの ActiveX コントロール ラジオ ボタンがあります。
私のコードには次のものがあります。
If OptionButton1.Value = True Then
MsgBox "Yes."
ElseIf OptionButton2.Value = True Then
MsgBox "No."
End If
マクロを実行しようとすると、次のエラーが発生します。
Runtime error '424':
Object Required
これを修正するにはどうすればよいですか?