Set up an Environment variable say "runme" and set it to "YES" (of course, this is only to your profile)
now, in your code check the variable
[vba]
Sub test()
If Environ("runme") = "YES" Then
Execute ....
end if
End Sub
[/vba]
Set up an Environment variable say "runme" and set it to "YES" (of course, this is only to your profile)
now, in your code check the variable
[vba]
Sub test()
If Environ("runme") = "YES" Then
Execute ....
end if
End Sub
[/vba]