MW211 EXIT

devlog
ExcelVBA/現在日から初日の求め方
2018年07月28日
┌──────────────────────────────────────┐
│Dim nowDate As Date: nowDate = Date                                         │
├──────────────────────────────────────┤
│月初日 = DateSerial(Year(nowDate), Month(nowDate), 1)                       │
├──────────────────────────────────────┤
│Const 期首月 As Long = 4                                                    │
│期首日 = IIf(Month(nowDate) < 期首月, _                                     │
│             DateSerial(Year(nowDate) - 1, 期首月, 1),                      │
│             DateSerial(Year(nowDate), 期首月, 1))                          │
├──────────────────────────────────────┤
│年初日 = DateSerial(Year(nowDate), 1, 1)                                    │
└──────────────────────────────────────┘
分類:ExcelVBA