I would like to save an add-in build as VBA on Excel 2010. The function unhides all the hidden TABS on a Excel worksheet.
Thanks
Thanks
Sub UnhideAllSheets()
Dim wsSheet As Worksheet
For Each wsSheet In ActiveWorkbook.Worksheets
wsSheet.Visible = xlSheetVisible
Next wsSheet
End Sub
Comment