Simple Checkbox

J

James8309

Hi Everyone,

I have an excel file and I run my macro by clicking on the 'Button'
that I created on the sheet.

i.e. Click 'Run' button on the sheet then it runs my macro


Is it possible for me to actually hook checkboxes and the run button?

e.g. If I have 3 check boxes, User must check those boxes before
running the macro.

is there any better way of doing this? maybe only when all checkboxes
are ticked my run button appears? or blocks otherwise? anything will
help.

I am trying to create this because even though I placed
"INSTRUCTIONS" people wouldn't follow the damn thing and just click
the run button.lol

thanks alot
 
J

Joel

Use these three click functions. Put them in the VBA sheet page where the
check boxes and button are located.

Private Sub CheckBox1_Click()
If ActiveSheet.CheckBox1 = True And _
ActiveSheet.CheckBox2 = True And _
ActiveSheet.CheckBox3 = True Then

ActiveSheet.CommandButton1.Enabled = True
Else
ActiveSheet.CommandButton1.Enabled = False
End If

End Sub
Private Sub CheckBox2_Click()
If ActiveSheet.CheckBox1 = True And _
ActiveSheet.CheckBox2 = True And _
ActiveSheet.CheckBox3 = True Then

ActiveSheet.CommandButton1.Enabled = True
Else
ActiveSheet.CommandButton1.Enabled = False
End If

End Sub
Private Sub CheckBox3_Click()
If ActiveSheet.CheckBox1 = True And _
ActiveSheet.CheckBox2 = True And _
ActiveSheet.CheckBox3 = True Then

ActiveSheet.CommandButton1.Enabled = True
Else
ActiveSheet.CommandButton1.Enabled = False
End If

End Sub
 
J

James8309

Use these three click functions.  Put them in the VBA sheet page where the
check boxes and button are located.

Private Sub CheckBox1_Click()
If ActiveSheet.CheckBox1 = True And _
   ActiveSheet.CheckBox2 = True And _
   ActiveSheet.CheckBox3 = True Then

      ActiveSheet.CommandButton1.Enabled = True
Else
      ActiveSheet.CommandButton1.Enabled = False
End If

End Sub
Private Sub CheckBox2_Click()
If ActiveSheet.CheckBox1 = True And _
   ActiveSheet.CheckBox2 = True And _
   ActiveSheet.CheckBox3 = True Then

      ActiveSheet.CommandButton1.Enabled = True
Else
      ActiveSheet.CommandButton1.Enabled = False
End If

End Sub
Private Sub CheckBox3_Click()
If ActiveSheet.CheckBox1 = True And _
   ActiveSheet.CheckBox2 = True And _
   ActiveSheet.CheckBox3 = True Then

      ActiveSheet.CommandButton1.Enabled = True
Else
      ActiveSheet.CommandButton1.Enabled = False
End If

End Sub












- Show quoted text -


Firstly Thank you so much for your help.

I have placed three check boxes and clicked "view code" for that
particular sheet where all my checkboxes and run button are located.
However when I click the 'run' button without checking any boxes, it
still does its job. Could you please advise what I did wrong? Do I
need to assign something with those check boxes? How do I activate
those private click subs?
 
J

Joel

After you enter the macros the 1st time you need to click one of the check
boxes and save the file. After that it should work correctly. the macros
won't work until you click a box.
 
J

James8309

After you enter the macros the 1st time you need to click one of the check
boxes and save the file.  After that it should work correctly.  the macros
won't work until you click a box.







- Show quoted text -

Nope, even after

a. Inserting macros into the sheet containing checkboxes and a button.

b. Checking one of the box, saving the file and re opening it.

c. Checking two of the box out of three then hitting the "RUN" button
still works.


I was wondering, if I insert those private subs into the sheet. when I
click those checkboxes, does it automatically pick it up and perform
macro for the button? I have a feeling that your code is good but I am
doing something wrong.

Could you help little bit more?

By the way, hitting the Run button will execute long macro involoving
multiple sheets in the same workbook.

thanks alot
 

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

Similar Threads


Top