Forum Discussion
Varun_Aggarwal
Jun 27, 2021Copper Contributor
Excel formula to get next thursday date from a cell date (or from today)
I am having some trouble figuring out the formula to auto-populate the date of next Thursday from another cell date. Kindly refer to the attached sheet, I need to insert a formula in B2 cell.
- Jul 04, 2021
Thanks a lot! I was looking at the below formula and it worked pretty well.
=A2+7-WEEKDAY(A2+2,1)
SergeiBaklan
Jun 27, 2021Diamond Contributor
I'd adjust the formula as
=A2+7-WEEKDAY(A2+2,1)
Main question here is - if today is Thu shall we show this date or next Thu. If the latest that could be
=A2+7-MOD(A2+2,7)
All set of formulas for such case is here Date for Next Wednesday (Microsoft Excel) (tips.net)
- Varun_AggarwalJul 04, 2021Copper Contributor
Thanks a lot! I was looking at the below formula and it worked pretty well.
=A2+7-WEEKDAY(A2+2,1)
- SergeiBaklanJul 04, 2021Diamond Contributor
Varun_Aggarwal , you are welcome