VBA Excel循环播放一年中的所有日子

Mar*_*son 2 excel vba excel-vba

在Excel VBA中:

如何遍历给定日期范围内的所有日期?

'2013-01-01'到'2013-01-03'应该给:

2013-01-01
2013-01-02
2013-01-03
Run Code Online (Sandbox Code Playgroud)

Joh*_*tos 11

这至少应该告诉你如何开始你想要做的事情:

  Sub test()

  Dim StartDate As Date
  Dim EndDate As Date
  Dim DateLooper As Date

  StartDate = #1/1/2013#
  EndDate = #12/31/2013#

  For DateLooper = StartDate To EndDate
     MsgBox (DateLooper)
  Next DateLooper

  End Sub
Run Code Online (Sandbox Code Playgroud)