I have a user form with the following code
Private Sub CmbStarting_Change()
LblDayOne.Caption = Format(CmbStarting.Value, "D-MMM-YYYY")
LblDayTwo.Caption = Format(CmbStarting.Value + 1, "D-MMM-YYYY")
LblDayThree.Caption = Format(CmbStarting.Value + 2, "D-MMM-YYYY")
LblDayFour.Caption =...