I have an automation I am trying to create to loop through days in a record. Basically the record I get includes the start and end date of a time period. I would like to loop through from the first day to the last day and create a day record for each date. Something like:
StartDate = 09-28-2024
EndDate = 10-01-2024
The loop would create dates in my Dates table for 09-28-2024, 09-29-2024, 09-30-2024, and 10-01-2024.
I've figured out how to do this in a script however my current plan does not allow for script execution so I'm wondering if there's a way to do this outside of a script. Any suggestions would be appreciated.