I didn't managed to find a elegant solution to this...
basically i need to enter a date in the first 35 rows (ex: TODAY()), in the next 35 rows I need to enter TODAY()+1 and so on..
my solution was:
=IF(ROW()<=35,
TODAY(),
IF(ROW()<=35*2,
TODAY()+1)) ...
is there something smoother than this?
basically i need to enter a date in the first 35 rows (ex: TODAY()), in the next 35 rows I need to enter TODAY()+1 and so on..
my solution was:
=IF(ROW()<=35,
TODAY(),
IF(ROW()<=35*2,
TODAY()+1)) ...
is there something smoother than this?