Converting Dates into Seasons

baumisf

New Member
Joined
Sep 30, 2009
Messages
2
Hey,

I have a list of dates, and would like to transform them into seasons (0=Winter, 1=Spring, 2=Summer, 3=Fall)

do you know how to do this?
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Hi & Welcome to the Board!

Please can you define from and to dates for all your seasons so that we can provide a solution. Thanks!
 
Upvote 0
thanks for your quick reply:

the datas are in the following format:
Day.Monty.Year (24.22.08) -> all dates are from 2008, German format

I want them to be converted into:
0 for Dates between 01.01.08 to 28.02.08 + 01.12.08 - 31.12.08
1 for Dates between 01.03.08 to 31.05.08
2 for Dates between 01.06.08 to 31.08.08
3 for Dates between 01.09.08 to 30.11.08

Thanks again and I am excited about your suggestions
 
Upvote 0
Assuming those dates are recognised by Excel as dates (they wouldn't with my Regional Settings as Iam in the UK) then I think the absoulte simplest way of doing this is

=INT(MOD(MONTH(A1),12)/3)
 
Upvote 0
If you have your date in A2 this formula should convert it as you specified

=IF(A2="","",CHOOSE(MONTH(A2),0,0,1,1,1,2,2,2,3,3,3,0))
 
Upvote 0

Forum statistics

Threads
1,214,594
Messages
6,120,436
Members
448,964
Latest member
Danni317

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top