countryfan_nt
Well-known Member
- Joined
- May 19, 2004
- Messages
- 765
Hello friends, hope all is well!
I want to copy and paste the code:
To every unhidden sheet’s module in the workbook.
The sheets are selected via the following code:
Can you please help me with that challenge?
Thank you so much in advance!
I want to copy and paste the code:
Code:
Worksheet_Activate
Call copy_value
Call format
End sub
To every unhidden sheet’s module in the workbook.
The sheets are selected via the following code:
Code:
Sub SelectSheets()
Dim mySheet As Object
For Each mySheet In Sheets
With mySheet
If .Visible = True Then .Select Replace:=False
End With
Next mySheet
End Sub
Can you please help me with that challenge?
Thank you so much in advance!
Last edited: