rawtech
VBA has a built-in time difference function you can use "DateDiff"
Sub Calculate_txtDuration()
Dim dteStartDateTime As Date, dteEndDateTime As Date
If Me.cboEndHour.Value <> "" And Me.cboEndMinute.Value <> "" And Me.cboStartHour.Value <> "" And Me.cboEndHour.Value <> "" And Me.cboStartMinute <> "" Then
dteStartDateTime = Me.dtpStartDate.Value & " " & Me.cboStartHour.Value & ":" & Me.cboStartMinute.Value
dteEndDateTime = Me.dtpEndDate.Value & " " & Me.cboEndHour.Value & ":" & Me.cboEndMinute.Value
Me.txtDuration.Value = "Hours:" & DateDiff("h", dteStartDateTime, dteEndDateTime) & " Min:" & DateDiff("n", dteStartDateTime, dteEndDateTime) - (DateDiff("h", dteStartDateTime, dteEndDateTime) * 60)
End If
End Sub
Bookmarks