XL: Macro to Loop Through Check Boxes Inside a Group Box

Last reviewed: December 1, 1997
Article ID: Q150373
The information in this article applies to:
  • Microsoft Excel for Windows, version 5.0
  • Microsoft Excel for Windows NT, version 5.0
  • Microsoft Excel for the Macintosh, version 5.0
  • Microsoft Excel for Windows 95, version 7.0

SUMMARY

In Microsoft Excel, you can use the Top, Height, Left, and Width properties of objects on a dialog sheet to determine if the objects are inside of a group box.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/support/supportnet/refguide/default.asp

You can use Visual Basic for Applications macro code to set all of the check boxes whose top-left corner is inside of a group box to the xlOn, or checked, status. To do this, use the following steps:

  1. In a new workbook, enter the following onto a Visual Basic for Applications module sheet:

          Sub SetCheckBoxes()
    
             ' Declare variables.
             Dim GB As Object, CB As Object
    
             ' Set variables (makes the following lines much shorter).
             Set DS = DialogSheets(1)
             Set GB = DS.GroupBoxes(1)
    
             ' Loop through all of the check boxes on the dialog sheet.
             For Each CB In DS.CheckBoxes
    
                ' Test if the check boxes' top-left corner is inside the group-
                ' box
                If CB.Left > GB.Left And CB.Left < GB.Left + GB.Width And _
                   CB.Top > GB.Top And CB.Top < GB.Top + GB.Height Then
                   ' If it is inside, then set the Value to xlOn.
                   CB.Value = xlOn
                End If
             Next
    
          End Sub
    
    

  2. Insert a dialog sheet.

  3. Add a group box large enough to place several check boxes within it.

  4. Add several check boxes, some inside of the group box and some outside of it.

  5. Run the macro.

    The check boxes whose top-left corner is inside the group box will be checked.

REFERENCES

"Visual Basic User's Guide," version 5.0, pages 146-147

Microsoft Excel Help, version 5.0


Additional query words: 5.00 7.00
Keywords : kbcode kbprg PgmHowto
Version : WINDOWS:5.0,7.0; MACINTOSH:5.0
Platform : MACINTOSH WINDOWS
Issue type : kbhowto


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: December 1, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.