REAL-TIME

VBA Projects

Full Access with Source Code
  • Designed and Developed by PNRao

  • Full Access with VBA Source Code

  • Well Commented Codes Lines

  • Creative and Professional Design

Effortlessly
Manage Your Projects

120+ Project Management Templates

Seamlessly manage your projects with our powerful & multi-purpose templates for project management.

120+ PM Templates Includes:
  • 50+ Excel Templates

  • 50+ PowerPoint Templates

  • 25+ Word Templates

Share Post

Description:

We may need to Hide UnHide the Columns in Excel for some types of requirements. For examples we may have data for 3 different categories and want to show it based on the user selection. We can achieve this by Hiding or Un-hiding the Columns in Excel. We will see this in the following examples…

Hide UnHide Columns in Excel Worksheet using VBA – Solution

We can use EntireColumn.Hidden property of a Column. You can set the property value to TRUE if you want to hide, Set to FALSE if you want to un-hide the Columns.

Hide-UnHide Columns in Excel Worksheet using VBA – An Example

The following example will show you how to hide and unhide the Columns in Excel using VBA. In this example I am hiding the Columns B,C and D by setting the Hidden property as TRUE. And then un hiding by setting the Hidden=FALSE.

Code:
Sub sbHidingUnHideColumns()

'To Hide Columns B to D
Columns("B:D").EntireColumn.Hidden = True

'To UnHide Columns B to D
Columns("B:D").EntireColumn.Hidden = False

End Sub
Instructions:
  1. Open an excel workbook
  2. Enter some data in the Range A1 to F5
  3. Press Alt+F11 to open VBA Editor
  4. Insert a Module for Insert Menu
  5. Copy the above code and Paste in the code window
  6. Save the file as macro enabled workbook
  7. Press F5 to run it
Input:

Download the example file available at end of the topic and execute the macros.

Output:

Here is sample screen-shot of the example file.
Hide Unhide Columns Examples

Hide-UnHide Columnsin Excel Worksheet using VBA – Case study

Here is the example case study. You can download the file below and see how its working. You can click on the buttons to view the respective data.

Hide Unhide Columns Examples Case Study

Hide Unhide Columns Examples Case Study

Hide Unhide Columns Examples Case Study 3

Hide-UnHide Columns in Excel Worksheet using VBA – Download Example File

You can download the example file and see the code for each button.
ANALYSISTABS – Hide-Unhide Columns

Hide Columns Based On Condition in Excel Worksheet using VBA

We can hide the columns based on certain condition. The below macro will loop through the first 25 columns and check if the value in the row 1 is 0, then hide it.

Example 1

Example macro to check if row 1 of a column is 0 and hide:

Sub hideColumnsBasedOnConditionZero()
LastColumn = 25 'Last Column
For i = 1 To LastColumn 'Lopping through each Column
    'Hide all the columns with the values as 0 in Row 1
    If Cells(1, i) = 0 And Cells(1, i) <> "" Then Columns(i).EntireColumn.Hidden = True

Next
End Sub

Example 2

Example macro to check if row 1 of a column is 0 or blank and hide:


Sub hideColumnsBasedOnConditionZeroBlank()
LastColumn = 25 ‘Last Column
For i = 1 To LastColumn ‘Lopping through each Column
‘Hide all the columns with the values as 0 in Row 1
If Cells(1, i) = 0 or Cells(1, i) = “” Then Columns(i).EntireColumn.Hidden = True

Next
End Sub

Effortlessly Manage Your Projects and Resources
120+ Professional Project Management Templates!

A Powerful & Multi-purpose Templates for project management. Now seamlessly manage your projects, tasks, meetings, presentations, teams, customers, stakeholders and time. This page describes all the amazing new features and options that come with our premium templates.

Save Up to 85% LIMITED TIME OFFER
Project Management Templates

All-in-One Pack
120+ Project Management Templates

Essential Pack
50+ PM Templates

Excel Pack
50+ Excel PM Templates

PowerPoint Pack
50+ Excel PM Templates

MS Word Pack
25+ Word PM Templates

Ultimate Project
Management Template
Ultimate Resource
Management Template
Project Portfolio
Management Templates
Categories: Excel VBATags: Last Updated: June 17, 2022

3 Comments

  1. Michael Ramírez January 7, 2016 at 1:02 AM

    Hello.

    Are you able to add a data list on A1, and depending on what you choose, it activates an specific Macro?

    For example. I choose (in A1) from a drop down list “Room 2” it will hide everything but room 2?

    I hope to hear from you soon, thank you very much for your example, I did learn more from it.

    Pura Vida from Costa Rica

  2. phani raj November 26, 2016 at 12:44 PM

    Sir,

    I am new to this subject. I want to hide rows from 10 to 22 if value at D7 is not 3. Please guide me for the same. Regards, phani

  3. Nayon December 12, 2016 at 8:40 PM

    I want Hide & unhidden column by using macro in excel. suppose by data validation i select “A” then Column “B:E” will show with specific column other column will be hidden.

    Is it possible ?????

    Note: I am new user of Macro.

Leave A Comment