作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前有将日期和时间输出到 A 列的代码,但我希望它们是分开的(日期在 A 列,时间在 B 列)。我试图通过录制宏并在 Excel 中执行定界过程来解决这个问题,但它并没有像我想要的那样工作。
我主要想知道的是这是否可能,或者我应该尝试替代编码来将它们分开?
Sub Macro1()
Dim dTime As Date
Range("A:A").Select
Selection.NumberFormat = "mm/dd/yyyy hh:mm:ss AM/PM"
Range("A1").Select
Set Cell = [A1]
For dTime = "3/01/2013 12:00:00 AM" To "3/02/2013 11:55:00 PM" Step "00:05"
ActiveCell.Value = dTime
ActiveCell.Offset(1, 0).Select
Next dTime
End Sub
最佳答案
您可以在将值放入单元格之前使用Format(Expression,[format])
来格式化值。请参阅下面更新的代码(请随意更新您认为合适的格式)
Sub Macro1()
Dim dTime As Date
Dim x As Integer
x = 1
For dTime = "3/01/2013 12:00:00 AM" To "3/02/2013 11:55:00 PM" Step TimeValue("00:05:00")
' Sets the date in the cell of the first column
Cells(x,1).Value = DateValue(dTime)
' Sets the time in the cell of the second column
Cells(x,2).Value = TimeValue(dTime)
' Increment the row position
x = x + 1
Next dTime
End Sub
关于excel - 将日期/时间拆分为 2 列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17731795/
我是一名优秀的程序员,十分优秀!