Naming custom date ranges

seeker123

Board Regular
Joined
Oct 8, 2011
Messages
84
Hi every one,

I have a large database with 10 years of data
I want to extract monthly data from it but the problem is that my monthly period starts at 9th of every month and ends at 8th of next month . I want to have a column that shows which month is the line in (my custom month) how can I do that?


For example I have something like column A and want to have column B
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Column A[/TD]
[TD]Column B[/TD]
[/TR]
[TR]
[TD]10-Jul-17[/TD]
[TD]Jul-17[/TD]
[/TR]
[TR]
[TD]7-Aug-17[/TD]
[TD]Jul-17[/TD]
[/TR]
[TR]
[TD]5-Jul-17[/TD]
[TD]Jun-17[/TD]
[/TR]
[TR]
[TD]3-Mar-17[/TD]
[TD]Feb-17[/TD]
[/TR]
</tbody>[/TABLE]
Thanks a lot
 
Last edited:

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
seeker,

Enter this formula in cell B2 then copy down.

=IF(DAY(A2)>9,TEXT(A2,"mmm")&"-"&TEXT(A2,"yy"),TEXT((A2)-28,"mmm")&"-"&TEXT(A2,"yy"))
 
Upvote 0

Forum statistics

Threads
1,224,824
Messages
6,181,186
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

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