@Rampage
Here is a sample process which you can customise as per your needs.
Copy-paste the below in a blank flow editor.
Display.SelectDateDialog.SelectDate Message: $'''From Date''' DateDialogFormat: Display.DateDialogFormat.DateOnly IsTopMost: False SelectedDate=> FromDate ButtonPressed=> ButtonPressed
Display.SelectDateDialog.SelectDate Message: $'''To Date''' DateDialogFormat: Display.DateDialogFormat.DateOnly IsTopMost: False SelectedDate=> ToDate ButtonPressed=> ButtonPressed
SET ResultedDate TO FromDate
Variables.CreateNewList List=> FinalList
LOOP WHILE (ResultedDate) <= (ToDate)
Variables.AddItemToList Item: ResultedDate List: FinalList NewList=> FinalList
DateTime.Add DateTime: ResultedDate TimeToAdd: 1 TimeUnit: DateTime.TimeUnit.Days ResultedDate=> ResultedDate
DISABLE Display.ShowMessageDialog.ShowMessage Message: ResultedDate Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False ButtonPressed=> ButtonPressed2
END
Excel.LaunchExcel.LaunchUnderExistingProcess Visible: True Instance=> ExcelInstance
Excel.WriteToExcel.Write Instance: ExcelInstance Value: FinalList

Output after running the process.
You can work on the date formatting part in the flow.
You can close the thread if this is good enough for you to get going.
