How to Unhide Columns in Excel

While doing data analysis in excel you would have noticed that all the data is not important for the end user (can be your boss).

Some of the columns are used merely for calculation purpose and that’s why it’s better to hide these columns as they create un-necessary confusions.

But now when it comes to unhide these columns, there are few complications. In this post I will show you a few ways by which you can easily unhide your hidden columns in Excel.

So here we go:

Un-hiding Columns in Excel the Easy Way

This is the easiest way to unhide columns in excel. Follow the below steps to use this method:

How to Unhide Columns in Excel
  1. First of all select one column on either side of the hidden column.
  2. Now, with all these columns selected right-click on the column header.
  3. This will open a popup menu, select the ‘unhide’ option and the hidden columns will be visible.

Unhide Columns in Excel Using the Shortcut

Actually, Microsoft Excel has provided certain shortcut keys for hiding rows and columns in your spreadsheets. These shortcut keys are in the below table:

Shortcut KeyDescription
CTRL+9Hides the selected rows.
CTRL+0Hides the selected columns.
CTRL+SHIFT+9Unhides the hidden rows within the selection.
CTRL+SHIFT+0Unhides the hidden columns within the selection.

The procedure of using these shortcut keys is quite simple. First, select one column on either side of the hidden column and then press the shortcut key.

Unhide Column or Rows shortcut keys not working?

Many Windows 8 and Windows 10 users have reported that the shortcut key for un-hiding the hidden columns doesn’t work on their systems.

Let’s understand why this happens. Microsoft Windows 8 and Windows 10 operating systems have assigned the ‘CTRL+SHIFT’ keys for Regional/ Language settings for changing the keyboard layouts. This functionality probably assigns numbers to different layouts.

So, the root of this problem is that whenever you press the column un-hiding shortcut key your OS gulps the keys and hence it interferes with the functionality of Microsoft Excel.

How to resolve this issue

The resolution of this issue is pretty obvious and that is changing the Keyboard Layout shortcut. Follow the below steps:

  1. First open the ‘Control Panel’, navigate to the ‘Change keyboards or other input methods’ link.
  2. Now a ‘Region and Language’ dialog box opens, select the ‘Keyboard and Language’ Tab and click on the ‘Change Keyboard’ button.
  3. Next, a new window ‘Text Services and Input Languages’ opens, here select the ‘Advance Key Settings’ tab and then click the ‘Change Key Sequence’ button.
  4. Under ‘Switch Keyboard Layout’, set the radio button to Not Assigned (or one of the other options, if you need this feature to be available).
  5. Click the ‘Ok’ button and now the unhide column shortcut key will start working in Excel.

This resolution is suggested in the Microsoft Knowledge Base article.

Unhide Columns or Rows in Excel using a VBA script

If you want to unhide your spreadsheet columns by using a code then you can use the following macro for this task:

Sub Unhide_AllColumns() 
ActiveSheet.Cells.EntireColumn.Hidden = False
End Sub

This small macro will unhide all the hidden columns in your active worksheet. If you also want this macro to unhide all the rows as well then simply add a line:

ActiveSheet.Cells.EntireRow.Hidden = False

So, these are some of the ways to Unhide Columns in Excel. Do share if you know any other ways to do the same.

About Content Studio

Thanks for reading. If you have found this article helpful show your love by sharing it with your friends & colleagues. All the tutorials on the Excel Trick are produced, reviewed, and fact-checked by a team of experts. You can check out our team here.