i have 2 shees which i need to use "xlveryhidden" Macro There is a issue with using it
1st sheet=input1
2nd sheet input2
This sheet are linked to other sheets with macro,if two sheets are visible then macro is running properly
My intention to use above code but its not working if both sheet are "xlveryhidden" before running my linked Macro
1st sheet=input1
2nd sheet input2
This sheet are linked to other sheets with macro,if two sheets are visible then macro is running properly
Code:
Sub Boom()
Sheets("SheetName").Visible = xlVeryHidden
Sheets("SheetName").Visible = False
End Sub
My intention to use above code but its not working if both sheet are "xlveryhidden" before running my linked Macro