You don't need the Target reference.
Try this to hide your empty worksheets instead
Sub hide()
'
' hide Macro
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
If ws.Range("A1") = "" Then
If ws.Visible = -1 And ws.Name <> ActiveSheet.Name Then ws.Visible = 0
Else
ws.Visible = -1
End If
Next ws
Exit Sub
End Sub
I'm not sure about dealing with your secone problem.
You could run an unhide subroutine similar to the one above that will run on a worksheet change event handler that watches for a change in the range where data would be enterend on the active sheet.
Bookmarks