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)
Riny_van_Eekelen
Jun 27, 2021Platinum Contributor
Varun_Aggarwal Try this:
=A2+5-WEEKDAY(A2)
The number 5 is chosen because I assumed that 5 is the day number for a Thursday.