checkbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an excel spreadsheet with several checkboxes, I would like to know how
to deselect certain checkboxes when one is selected. Also is ther anyway to
have a popup window with text information come up when a check box is
selected?
Thanks in advance
 
activesheet.checkboxes("Check Box 1").value = false

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Hello
You probably need option buttons if you need this functionality. Have you
considered them?
Also to show a pop-up, you have to first create a UserForm and then invoke
its startup code in a macro. The code for invoking a UserForm is
UserForm1.Show
Alok Joshi
 

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