0

你能给我代码从轮班时间(例如5:00:00)中扣除“00:30:00”并存储在另一个变量中吗?班次时间将从输入框中获取。加法给出正确答案(5:30:00),其中扣除给出 0.528999 等。

  If shin2 <> "" Then
  intime2 = TimeValue(shin2) + TimeValue("00:30:00")
  MsgBox intime2
  intime22 = TimeValue(shin2) - TimeValue("00:30:00")
  MsgBox intime22
  End If

亲切的问候

4

2 回答 2

1

考虑:

Sub SHIFTTIME()
    Dim t As Date, s As String
    s = Application.InputBox(Prompt:="Enter time as hh:mm:ss", Type:=2)
    t = TimeValue(s) - TimeSerial(0, 30, 0)
    MsgBox t
End Sub
于 2013-10-26T15:14:07.760 回答
0

我检查了你的代码,我觉得没问题。

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 将时间字符串转换为十进制数,因此我怀疑您的奇怪结果可能与您的变量以及它们的声明方式有关。

于 2013-10-27T13:31:53.123 回答