|
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用 · 内置多项VBA编程加强工具 ★ 免费下载 ★ ★ 使用手册★
ActiveCell.Offset(1, 0).Range("D1") = ComboBox1.Text
If OptionButton1.Value = True Then
ActiveCell.Offset(1, 0).Range("E1") = OptionButton1.Caption
End If
If OptionButton2.Value = True Then
ActiveCell.Offset(1, 0).Range("E1") = OptionButton2.Caption
End If
If OptionButton3.Value = True Then
ActiveCell.Offset(1, 0).Range("E1") = OptionButton3.Caption
End If
If OptionButton4.Value = True Then
ActiveCell.Offset(1, 0).Range("E1") = OptionButton4.Caption
End If
OptionButton 那个我尝试用循环语句
For i = 1 To 4
If OptionButton(i).Value = True Then
ActiveCell.Offset(1, 0).Range("E1") = OptionButton(i).Caption
End If
Next
但是提示子过程或函数未定义 求教
|
|