sometimes you hide the sheets in doing works. In unhiding the each sheet , took a lots of time if you hide more than 10 sheets , then it took many valuable time Imagine if you un hide all the sheet in one click. how much time you save HERE are the following steps 1) open VBA by pressing ALT +F11 2) insert new module 3) copy the following code and paste it on module Sub unhide_sheet() Dim kk As Worksheet For Each kk In Worksheets kk.Visible = True Next kk End Sub congrats you unhide all the sheets in one click