我检查了你的代码,我觉得没问题。
Sub TimeValueTest()
Dim shin2 As String
Dim intime22 As Double, intime2 As Double
shin2 = InputBox("Enter time in hh:mm:ss format")
If shin2 <> "" Then
intime2 = TimeValue(shin2) + TimeValue("00:30:00")
Debug.Print "intime2"
Debug.Print "value: " & intime2
Debug.Print "time: " & Format(intime2, "hh:mm:ss")
Debug.Print "----"
intime22 = TimeValue(shin2) - TimeValue("00:30:00")
Debug.Print "intime22"
Debug.Print "value: " & intime22
Debug.Print "time: " & Format(intime22, "hh:mm:ss")
End If
End Sub
如果我在输入框中输入 05:00:00,则输出以下内容。
intime2
value: 0.229166666666667
time: 05:30:00
----
intime22
value: 0.1875
time: 04:30:00
在引擎盖下 TimeValue 将时间字符串转换为十进制数,因此我怀疑您的奇怪结果可能与您的变量以及它们的声明方式有关。