F
Fan924
Can a macro be made so that it will only work in the workbook it
belongs to?
belongs to?
IsWorkbook = ActiveWorkbook.Name = ("Book2")
End Function
Sub Test()
If IsWorkbook = True Then
MsgBox "Your Macro Here"
Else
MsgBox "Sorry no Macro for you"
End If
End Sub