Dear @Office worker,
Thank you for posting your question in the Microsoft Q&A forum.
Based on your description, you want to create an Excel formula that categorizes each date into a season (e.g., Spring, Summer, Autumn, Winter) based on specified date ranges.
Here are some suggestions you can try:
You could achieve this in Excel using an IF formula combined with AND conditions to check whether the date falls within a specific range.
=IF(AND(A2>=DATE(2025,11,1),A2<=DATE(2025,11,30)),"Spring",
IF(AND(A2>=DATE(2025,12,1),A2<=DATE(2026,2,28)),"Summer",
IF(AND(A2>=DATE(2026,3,1),A2<=DATE(2026,5,31)),"Autumn",
IF(AND(A2>=DATE(2026,6,1),A2<=DATE(2026,8,31)),"Winter
Explanation:
DATE(year,month,day) ensures Excel interprets the date correctly.
AND(condition1, condition2) checks if the date is within the start and end range.
Nested IF statements return the correct category.
I hope information above meet your expectation, if I misunderstand your point, please pardon me and provide me more detail information so we could support you more effectively. If you have any other questions, please feel free to reach out.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.