gpt4 book ai didi

vba - Excel VBA将时间特定值从用户表单存储到单元格中

转载 作者:行者123 更新时间:2023-12-04 20:19:51 26 4
gpt4 key购买 nike

我有一个用户表单,要求用户通过两个单独的组合框 cboStartDate、cboStartTime 输入特定的日期和时间。用户还必须在文本字段 txtDuration 中输入持续时间。

保存后,开始日期和时间将存储在格式化单元格 [DD/MM/YYYY HH:MM AM/PM] 中。结束日期和时间将从持续时间字段计算并存储在具有相同格式的另一个单元格中。像这样的东西:

+-----------------------+-----------------------+| startTime             | endTime               |+-----------------------+-----------------------+| 2/4/2012  11:30:00 AM | 2/4/2012  2:00:00 PM  |+-----------------------+-----------------------+

However, after running the userform through, the start time is not stored, and the end time is not calculated. Something like this:

+-----------------------+-----------------------+| startTime             | endTime               |+-----------------------+-----------------------+| 2/4/2012  12:00:00 AM | 2/4/2012  12:00:00 AM |+-----------------------+-----------------------+

Below is my part of my VBA code:

Dim iRow As Long
Dim ws As Worksheet
Dim startDate As Date
Dim unFmtStartDuration() As String
Dim startDuration As Double
Dim minTest As Integer
Dim endDate As Date
Dim endDuration As Double

Set ws = Worksheets("EVENTS")

'Search for the last row in the worksheet
iRow = ws.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row

'Date manipulation and set start and end timings
unFmtStartDuration() = Split(cboStartTime.Text, ":")
startDuration = unFmtStartDuration(0)
If unFmtStartDuration(1) = "00" Then
minTest = 0
Else
minTest = unFmtStartDuration(1)
If minTest = 30 Then
startDuration = startDuration + 0.5
End If
End If
startDate = DateValue(DateAdd("h", startDuration, cboDate.Text & " 12:00AM"))
ws.Cells(iRow, 4).Value = startDate
endDuration = txtDuration.Value
endDate = DateValue(DateAdd("h", endDuration, startDate))
ws.Cells(iRow, 5).Value = endDate

那么我怎样才能把这部分整理出来呢?将不胜感激这里的任何帮助。谢谢。

附言想在这里发截图,但我在这里的声誉太低了。对不起。

最佳答案

看起来您只是添加了 minTest = 30 的时间。 ,但这个值可能变化很大。此外,在一个实例中,您在引用 unFmtStartDuration 时比较一个字符串和另一个数字。 ,这可能有效,但在阅读您的代码时会令人困惑。

要遵循您当前的方法,请使用

startDuration = Val(unFmtStartDuration(0) + Round(Val(unFmtStartDuration(1)) / 60, 2)

替换这个
startDuration = unFmtStartDuration(0)
If unFmtStartDuration(1) = "00" Then
minTest = 0
Else
minTest = unFmtStartDuration(1)
If minTest = 30 Then
startDuration = startDuration + 0.5
End If
End If

这将花费任何时间并将其转换为您正在使用的十进制形式,而不是依赖 30匹配。 (除非您特别需要。如果是这样,请说出来,因为我认为这仍然可以通过舍入技巧来安排。)

但是,我认为更好的选择是使用
startDuration = TimeValue(cboStartTime.Text) * 24

所以不涉及其他数学或检查。

此外,除非 cboStartTime.Text (以及随后的 startDuration )大于 24 小时,这
startDate = DateValue(DateAdd("h", startDuration, cboDate.Text & " 12:00AM"))

将始终返回 cboDate.Text 中指定的日期隐含 12:00:00 AM .要更正此问题,您需要更改为
startDate = DateAdd("h", startDuration, cboDate.Text & " 12:00AM")

我认为还有一些问题需要解决,但希望这能让你朝着正确的方向前进......

关于vba - Excel VBA将时间特定值从用户表单存储到单元格中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9927188/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com