Reputation: 31
On my planner I have a section with recurring dates (see pic below) that I use to copy/paste cells into the main body of my planner as needed.
I use the formula below (Thursday shown) for 'recurring every week', but what about 'recurring every 2 weeks'? I'll need to use the DATE() function I think, copy/paste and then edit the date in the formula each time, I'm OK with that, but struggling to come up with the right formula.
=IF(WEEKDAY(TODAY())=5,TODAY(),TODAY()-WEEKDAY(TODAY())+5 + IF(WEEKDAY(TODAY())>=5,7))
Upvotes: 0
Views: 5300
Reputation: 1
I know this is old but I just needed to do this so thought this might help others.
=$
then select the cell with date and add +14
(for example =$A2+14
)Upvotes: 0
Reputation: 17493
In order to create a 2-week switch, I'd go for a weeknumber mod 2:
=MOD(WEEKNUM(TODAY(),11),2)
This gives 1 for odd, and 0 for even week numbers.
Good luck
Upvotes: 1