How to set checked property in vba (format or control toolbox)
Posted
by rach-90
on Stack Overflow
See other posts from Stack Overflow
or by rach-90
Published on 2010-06-11T17:59:57Z
Indexed on
2010/06/11
18:03 UTC
Read the original article
Hit count: 154
I'm trying to change the value of my checkbox to true based on a another cell's value
if range("A1").value = "green" then
Checkbox1.value= true
end if
How to I change the value property to true for multiple checkbox at the same time
For some reason the code that i've tried doesn't do anything at all. P.S. I'm using format checkboxes
© Stack Overflow or respective owner