目前 我在EXCEL 中 有 50个CheckBox: CheckBox1~CheckBox50
VB 中需要对其进行判断;
IF CheckBox1=True then A=A+1
IF CheckBox1=False then A=A
IF CheckBox2=True then A=A+1
IF CheckBox2=False then A=A
.......
IF CheckBox2=True then A=A+1
IF CheckBox2=False then A=A
以上 要写 N遍。
但用循环 : For n=1 to 50
IF CheckBox+n =True then A=A+1
IF CheckBox+n=False then A=A
next
(以上 又完全错误,要如何实现循环啊,避免写IF N回 )
Qyouu