Add data to row, loop

I have a flow, that creates a sequential of rows, by using the date from today, then adding an offset to today. I need to build a list that has the next 90 days listed from today, currently i have 90 steps and have joined them, does anyone have a faster way of building this with some sort of fill down or similar?

Hello Damien,

Wow! 90 steps – that sounds like an impressive flow, great work.
I think I can suggest something a little simpler. This one would require 7 steps:



Step 1:



Step 2:



Step 3:



Step 4:



Step 5:


(X is Unix timestamp, which is a time format easier for computers to use)

Step 6:


(multiplying row number by total seconds in a day, being 86,400, before adding to the date)

Step 7:


(reverted time format back to one that is more human-readable)

Let me know if you’d like clarification on any of the above, or have other Parabola questions I can assist you with.

3 Likes

Perfect, got that working. Thanks!

2 Likes