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
Column AColumn B
10-Jul-17Jul-17
7-Aug-17Jul-17
5-Jul-17Jun-17
3-Mar-17Feb-17

<tbody>
</tbody>
Thanks a lot
 
Last edited:

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
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,214,912
Messages
6,122,200
Members
449,072
Latest member
DW Draft

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