Using a macro to code a checkbox on click - Help

  • Thread starter Thread starter Rog
  • Start date Start date
R

Rog

Hello,
I have an Checkbox that I want to do the following:

If checkbox is clicked, then add the text "Under" in Cell V3

**I think this needs "CheckBox.Value", but I cant get my finger on this
one. ANY SUGGESTIONS ON HOW TO CODE THIS ONE?

Thanks,
Rog
 
Rog,

Try this

If CheckBox1.Value = "True" Then
Set C = Range("v3")
C.Select
C.Value = "test"
End If


Hello,
I have an Checkbox that I want to do the following:

If checkbox is clicked, then add the text "Under" in Cell V3

**I think this needs "CheckBox.Value", but I cant get my finger on this
one. ANY SUGGESTIONS ON HOW TO CODE THIS ONE?

Thanks,
Rog


--


Jerry

~~~ plz remove "nospam." when replying via e-mail ~~~
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top