

xlSheetVeryHidden - the sheet is very hidden.xlSheetHidden (or FALSE) - the sheet is hidden.xlSheetVisible (or TRUE) - the sheet is visible.Technically, how does Excel distinguish between hidden and very hidden worksheets? By the Visible property of the sheet, which can have one of these values: If the workbook contains both hidden and very hidden sheets, the Unhide dialog will be available, but very hidden sheets won't be listed there. If the workbook contains only very hidden sheets, you won't even be able to open the Unhide dialog box because the Unhide command will be disabled. Very hidden sheets are a different story. All you have to do is right-click any visible worksheet, click Unhide, and select the sheet you want to view. Unhiding a sheet that was hidden normally is very easy.

As a matter of fact, there are two levels of worksheet hiding: hidden and very hidden. What is a very hidden worksheet in Excel?Īs everyone knows, an Excel sheet can be visible or hidden. Where on earth could that sheet be? Simply, it is very hidden. Worksheets(sheetName).Range("G" & hideThisRowNum).This tutorial clarifies the difference between hidden and very hidden sheets, explains how to make a worksheet very hidden and how to view very hidden sheets in Excel.Īre you exasperated because you cannot find the spreadsheet one of your formulas refers to? The sheet does not appear among other tabs at the bottom of your workbook, nor does it show up in the Unhide dialog box. Worksheets(sheetName).Rows(hideThisRowNum).Hidden = True LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _ Set foundCell = Worksheets(sheetName).Range("A1:A" & lastRow).Find(What:=findId, LookIn:=xlValues, _ With Worksheets(sheetName).Range("a1:a1000") 'This needs to be A1 to AxlDown LastRow = Worksheets(sheetName).Range("A" & Rows.Count).End(xlUp).Row Thanks in advance for the help! Public Sub hideRow(findId As String, sheetName As String) If I show the column the code executes clearly. When I hide column A manually in the sheet for visual purposes I am then unable to read from that column, aka my code returns an error. I am trying to utilize Column A as a row of unique keys to allow me to quickly develop logic that hides and shows a row based on the key value in column A. I am currently having issues with a Macro I am programming for Excel 2013 regarding reading hidden columns.
