This should work but it does not. What am I missing?


'VBA 2003

dim ii as integer

For ii = 1 To 3
'This should run!!!!!!
Message
MsgBox "Time to take a break!"
Next ii


Public Sub Message()
MsgBox "Time to take a break!"
End Sub