Jeffreyxx01
Board Regular
- Joined
- Oct 23, 2017
- Messages
- 156
Hi
I need my macro to work from another sheet when my worksheet is hidden
Can anyone help and explain how to do it,
I need my macro to work from another sheet when my worksheet is hidden
Can anyone help and explain how to do it,
Code:
Sub Date_Change_Weekly()'
' Date_Change_Weekly Macro
'
Dim Sht As Worksheet
Set Sht = ActiveWorkbook.Sheets("Pipeline")
Sht.Cells.FormulaR1C1 = "=TODAY()"
Range("BK1").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End Sub