I have been using this Macro shown below for many years now to unhide previously Very Hidden worksheets.
Sub VisibleTrue()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Sheets
ws.Visible = True
Next ws
ActiveWindow.DisplayWorkbookTabs = True
Sheet1.Select
End Sub
This Macro now gives me the following error message when I try to activate the macro.
I have this programme operating on two computers and they have mysteriously both failed on the same day????
Has there been any changes to the Microsoft Visual Basic language in the last week or so????
Sub VisibleTrue()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Sheets
ws.Visible = True
Next ws
ActiveWindow.DisplayWorkbookTabs = True
Sheet1.Select
End Sub
This Macro now gives me the following error message when I try to activate the macro.
I have this programme operating on two computers and they have mysteriously both failed on the same day????
Has there been any changes to the Microsoft Visual Basic language in the last week or so????