Any idea why my On Timer event won't work in my Access Form? I've tried many different timer intervals from 1 to 1000000. Here is my code:
Private Sub Form_Timer()
' Check to see if today is Tuesday and if true
' import weekly data
If Day(Date) = 3 Then
DoCmd.RunMacro "macAutoEmailMasterbaseToNicola"
End If
End Sub
Thanks if anyone can help.
Private Sub Form_Timer()
' Check to see if today is Tuesday and if true
' import weekly data
If Day(Date) = 3 Then
DoCmd.RunMacro "macAutoEmailMasterbaseToNicola"
End If
End Sub
Thanks if anyone can help.