+ Reply to Thread
Results 1 to 3 of 3

Reset a Check Box

Hybrid View

  1. #1
    Registered User
    Join Date
    08-18-2005
    Posts
    24

    Reset a Check Box

    I need some help in resetting checkboxes. I have a button that resets cells, but I also want several checkboxes to be reset to unchecked when the button is pressed. Is there some code I can add to the button to make this happen?

    Thanks in advance.

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello Mhart210,

    These code examples work with the Forms CheckBoxes. Use the constants xlOn and xlOff rather than True or False. Substitute your CheckBox names into the code below.

    Examples of Checking and UnChecking:
    ActivveSheet.CheckBoxes("Check Box 1").Value = xlOn
    ActiveSheet.CheckBoxes("Check Box 1").Value = xlOff
    Example of Clearing All CheckBoxes on the Active Sheet:

    Sub ClearCheckBoxes()
    
     'Clears All Forms CheckBoxes on the ActiveSheet
      With ActiveSheet
       If .CheckBoxes.Count = 0 Then Exit Sub
         For I = 1 To .CheckBoxes.Count
           .CheckBoxes(I).Value = xlOff
         Next I
      End With
      
    End Sub
    Sincerely,
    Leith Ross

  3. #3
    Registered User
    Join Date
    08-18-2005
    Posts
    24
    Thank you so much. It worked great.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1