H
Harald Staff
Hi Paul
Sub test()
With Sheets(3)
If .Range("M7").Value = "" Then
.Visible = False
Else
.Visible = True
End If
End With
End Sub
Now you figure out how to write into M7 when the sheet is hidden ;-)
HTH. Best wishes Harald
Sub test()
With Sheets(3)
If .Range("M7").Value = "" Then
.Visible = False
Else
.Visible = True
End If
End With
End Sub
Now you figure out how to write into M7 when the sheet is hidden ;-)
HTH. Best wishes Harald