Hi,
I'm seeking to develop a formula in Excel to calculate the number of weeks left in a month two weeks from the current week.
I use the following formula to get the week and then 7 days are added and dragged to get the next 16 weeks.
However, I'm seeking ways to write the formula to automate this calculation so that manual interventions to adjust the cell references can be avoided.
listed below are the points to consider in the formula
I'm seeking to develop a formula in Excel to calculate the number of weeks left in a month two weeks from the current week.
I use the following formula to get the week and then 7 days are added and dragged to get the next 16 weeks.
Excel Formula:
14+(TODAY()-WEEKDAY(TODAY())+2)
However, I'm seeking ways to write the formula to automate this calculation so that manual interventions to adjust the cell references can be avoided.
listed below are the points to consider in the formula
- Week 1 starts on the first Monday of the month; the days before that belong to the last week of the previous month
- quantity is split equally against the number of weeks in the month
- quantity for the remaining weeks of the month is considered
Book9 | |||||||||
---|---|---|---|---|---|---|---|---|---|
E | F | G | H | I | J | K | |||
9 | Apr-24 | May-24 | Jun-24 | Jul-24 | Aug-24 | ||||
10 | 200 | 200 | 200 | 200 | 200 | ||||
11 | |||||||||
12 | 04/22/2024 | 04/29/2024 | 05/06/2024 | 05/13/2024 | 05/20/2024 | 05/27/2024 | 06/03/2024 | ||
13 | 40 | 40 | 50 | 50 | 50 | 50 | 50 | ||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
E12 | E12 | =14+(TODAY()-WEEKDAY(TODAY())+2) |
F12:K12 | F12 | =E12+7 |