Jul 26 2022 01:36 AM
Hola 🙂
I would like to have an option to drag down (to create new rows in my table).
The date column should repeat the same date 5 times, add one day, and repeat that date 5 times.
Is there an easy way?
Jul 26 2022 01:49 AM
@Celia9 The easy way, though not very elegant, would be to start with something like this (dates in B, formulas used in C):
Now select B7:B11 and pull the drag handle down as far as needed to end up with this:
Jul 26 2022 01:51 AM
=TODAY()+QUOTIENT(ROW(),5)
You can try this formula which i've entered in cell C5 in the example.
Jul 26 2022 01:52 AM
I would use a formula, but that is simply the way I work
= StartDate + QUOTIENT(SEQUENCE(Count,,0),5)
No 'miracles' with flash fill etc for me I'm afraid.