Skip to main content

How to remove or hide borders from group boxes in Excel?

In Excel, you may create some group boxes to group multiple option buttons for doing a multiple choice question, so there will be group boxes around the option buttons, and the box lines look messy because the lines are not as straight as the cells. This article, I will introduce you some tricks to hide or remove the borders or lines from the group boxes to make the worksheet more clearly viewed as following screenshot shown:

doc hide group box borders 1

Remove or hide borders from group boxes with one code

Remove or hide borders from group boxes with VBA code


arrow blue right bubble Remove or hide borders from group boxes with one code

To hide or remove the border lines of the group boxes, here is one script may help you, please do as this:

1. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window.

2. Then press Ctrl + G to open the Immediate window, in the Immediate window, type this code: activesheet.groupboxes.visible = false, see screenshot:

doc hide group box borders 2

3. After entering the code, and then press Enter key, and now, you can see the borders of the group boxes are hidden immediately.

Note: To display the borders again, please apply this code: activesheet.groupboxes.visible = true, and press Enter key.


arrow blue right bubble Remove or hide borders from group boxes with VBA code

Besides the above code, here is another VBA code which also can help you, please do as follows:

1. Hold down the ALT + F11 keys to open the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following code in the Module Window.

VBA code: Remove or hide borders from group boxes:

Sub ToggleVisible()
Dim myGB As GroupBox
For Each myGB In ActiveSheet.GroupBoxes
myGB.Visible = False
Next myGB
End Sub

3. Then press F5 key to run this code, all the borders of the group boxes in active worksheet are hidden at once, see screenshot:

doc hide group box borders 1

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions…
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (2)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
hello guys,
i need to select multiple button to sum my scores. if is this possible pls suggest my a idea.?
This comment was minimized by the moderator on the site
Very nice piece of code, thanks. Helped to sort out client problem! Can toggle it: Sub ToggleVisible() Dim myGB As GroupBox For Each myGB In ActiveSheet.GroupBoxes myGB.Visible = IIf(myGB.Visible, False, True) Next myGB End Sub
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
Rate this post:
0   Characters
Suggested Locations