Get Sheet Names

How To Get Sheet Names Using VBA in Microsoft Excel

 

In case you want to find out a way which can get you all the names of the sheet that are visible i.e. not hidden.

In this article, we will learn how to get names of the visible sheets only, using VBA code.

Question): I have multiple sheets in one file & I have hidden the sheets which I do not want others to see; I want a code that will give me the name of all the visible sheets.

Let us consider we have 5 sheets & we intentionally hide a particular sheet.

To get name of the visible sheets, we need to follow the below steps:

  • Click on Developer tab
  • From Code group, select Visual Basic

 

img1

 

Copy the below code in the standard module

 

Sub VisibleSheets()

Dim i As Integer, j As Integer: j = 1

Cells(1, 1).CurrentRegion.Cells.Clear

  For i = 1 To Sheets.Count

     If Sheets(i).Visible = -1 Then

         Cells(j, 1) = Sheets(i).Name

         j = j + 1

     End If

 Next

End Sub

 

img2 

 

  • First time when you run the code, you will get the names of all the sheets in current sheet in column A

 

img3

 

  • If we hide Jan sheet then we will have following list of sheet names

 

img4

 

In this way, we can get the name of all the visible sheets, using vba code.

 

image 4

Download - How to get sheet names with vba - xlsm

Leave a Reply

Your email address will not be published. Required fields are marked *

Terms and Conditions of use

The applications/code on this site are distributed as is and without warranties or liability. In no event shall the owner of the copyrights, or the authors of the applications/code be liable for any loss of profit, any problems or any damage resulting from the use or evaluation of the applications/code.