如何在excel中用vba实现定时提醒功能
发布网友
发布时间:2022-06-02 03:56
我来回答
共1个回答
热心网友
时间:2023-11-19 00:55
用这个宏:
Sub auto_open() '设置一个自动运行的宏--auto_open
Application.OnTime TimeValue("09:30:00"), "tx"
'设置提醒时间为09:30:00(可以根据实际需要进行修改),设置调用提醒宏
Application.OnTime TimeValue("010:00:00"), "tx" '再设置提醒一次。
End Sub
Sub tx() '设置一个显示提醒消息的宏。
msg = MsgBox("你需要起床了", vbInformation, "赶快起来")
End Sub