I created a workflow to review the last 8 days worth of a data set. The filter (below) pulls in 8 days of data and then the rest of the flow checks to see if any changes have happened to the data based on the minimum date available:
[Date] >= ToDate(DateTimeAdd(DateTimeToday(), -8, "days"))
This process works great, but now I need to run the process iteratively for the past couple months, is there anyway to create a macro so that I can pull in chunks of 8 days worth of data at a time. The rest of the flow will be easy to modify, i'm just not sure how to setup a macro to pull in 8 days of data at a time based on a start date, say Jan 1 2020.