A2oz

How Do I Unhide Columns in Excel?

Published in Excel 3 mins read

You can unhide columns in Excel using a few simple methods.

Using the Column Header

  1. Locate the hidden column: Look for a blank space in the column headers where the hidden column should be.
  2. Right-click on the column header: Right-click on the header to the left or right of the hidden column.
  3. Select "Unhide": From the context menu, choose "Unhide."
  4. Select the hidden column: In the "Unhide" dialog box, select the hidden column you want to unhide.
  5. Click "OK": Click the "OK" button to unhide the selected column.

Using the "Unhide" Option in the "Format" Menu

  1. Select the column next to the hidden column: Click on the column header immediately to the left or right of the hidden column.
  2. Go to the "Format" menu: Click on the "Format" menu in the Excel ribbon.
  3. Select "Column Width": Choose "Column Width" from the "Format" menu.
  4. Select "Unhide": In the "Column Width" dialog box, click on the "Unhide" button.
  5. Select the hidden column: In the "Unhide" dialog box, select the hidden column you want to unhide.
  6. Click "OK": Click the "OK" button to unhide the selected column.

Using Keyboard Shortcuts

You can also unhide columns using keyboard shortcuts.

  • Select the column next to the hidden column.
  • Press "Alt" + "H" + "O" + "U".

Using the "Unhide" Command

  1. Press "Alt" + "F11" to open the Visual Basic Editor.
  2. In the "Project" window, select the worksheet where the hidden column is located.
  3. In the "Insert" menu, select "Module".
  4. Paste the following code into the module:
Sub UnhideColumn()
    Sheets("Sheet1").Columns("A:A").Hidden = False
End Sub
  • Replace "Sheet1" with the name of your worksheet.
  • Replace "A:A" with the column letter or range you want to unhide.
  • Close the Visual Basic Editor.
  • Run the macro by pressing "Alt" + "F8".
  • Select "UnhideColumn" from the list of macros and click "Run".

Practical Insights

  • Use the column header method for quick and easy unhiding.
  • Use the "Unhide" option in the "Format" menu for more control over the unhiding process.
  • Use keyboard shortcuts for a faster way to unhide columns.
  • Use the "Unhide" command for more complex unhiding scenarios.

Related Articles