How to Calculate Monday from Sunday Date in Excel Easily
Learn how to calculate the Monday of a week from a given Sunday's date in Excel using simple formulas for accurate weekly date calculations.
174 views
To calculate the Monday of a given week when you have the Sunday's date in Excel, you can use the formula: `=A1-6`. Assuming cell A1 contains the Sunday's date, this formula will give you the date of the preceding Monday. If you want a dynamic approach, use: `=A1-WEEKDAY(A1, 2)+1` to always get Monday's date regardless of the day in A1.
FAQs & Answers
- How do I find the Monday of a week if I only know the Sunday date in Excel? You can use the formula =A1-6 if A1 contains the Sunday date, which calculates the Monday of that week.
- What formula returns the Monday date dynamically based on any date in Excel? Use =A1-WEEKDAY(A1, 2)+1 to get the Monday date of the week containing the date in A1.
- What does the WEEKDAY function do in Excel date calculations? The WEEKDAY function returns the day of the week for a given date, which can be used to adjust dates to specific weekdays.