excel表格中怎样让输入的时间与电脑时间同步!
例:在Excel表格中输入20:15:12
让秒自动增加。
求一宏代码……
excel表格中怎样让输入的时间与电脑时间同步!
例:在Excel表格中输入20:15:12
让秒自动增加。
求一宏代码……
工作表代码
Private Sub Worksheet_Activate() Application.OnTime Now() + TimeValue("00:00:01"), "aa" End Sub 模块代码
Sub aa() [a1] = Now() bb End Sub
Sub bb() Application.OnTime Now() + TimeValue("00:00:01"), "aa" End Sub