我有下一张带有许多复选框的 Excel 表格。
问题是当我编码时,我必须使用Valor1和Valor2执行一些功能,具体取决于复选框是否被激活。
好吧,我有代码。
Option Explicit
Sub Casilladeverificación1_Haga_clic_en()
Range("c12").Activate
Do
If CheckBox1.Value Then
Call fucntion1
'Works for the first row, but for the second row int shoul be check CheckBox12 ,a next CheckBox23 ...
If CheckBox2.Value Then
Call fucntion1
If CheckBox2.Value Then
Call fucntion3
....
ActiveCell.Offset(1, 0).Activate
While Not IsEmpty(ActiveCell.Value2)
End Sub
但是你可以注意到我不想用所有的复选框来做所有的情况,有一个解决这个问题的方法,比如checkbox[i]