当前位置:首页>维修大全>综合>

请问Excel表格中如何倒计时 并且弹出提示

请问Excel表格中如何倒计时 并且弹出提示

更新时间:2023-09-10 11:32:12

请问Excel表格中如何倒计时 并且弹出提示

按alt+F11键,打开VBA窗口,双击sheet1,将下方的代码复制到打开的窗口中;

Sub 倒计时()

[a1]

.NumberFormatLocal

= "h:mm:ss;@"

[a1] = [a1] - 1 / 3600 / 24

If [a1] < 1 / 60 / 24 Then

[a1]

.Font.ColorIndex

= 3

Else

[a1]

.Font.ColorIndex

= 5

End If

If [a1] > 0 Then

Application.OnTime

Time + TimeSerial(0, 0, 1), "sheet1.倒计时", , True

Else

[a1] = "00:00:00"

End If

End Sub

在A1单元格输入倒计时开始的小时数,如3个小时“3:00”格式自定;

点击“开发工具”-“插入”-“表单控价”,插入一个按钮,打上想要的文字;

更多栏目