Schnelle Makrolösung. Bearbeiten Sie das Start- und Enddatum im Code.
Sub PrintAllDates() Application.ScreenUpdating = False Dim printDate As Date Dim startDate As Date Dim endDate As Date startDate = "10/01/2018" endDate = "10/31/2018" For printDate = startDate To endDate ActiveSheet.Range("B1") = printDate ActiveSheet.PrintOut Next Application.ScreenUpdating = True End Sub