Fiscal Period by Date

jdavid1006

New Member
Joined
Oct 21, 2019
Messages
6
Hey everyone,

I'm drawing a blank here. I have a workbook for a company that runs on a 13 period fiscal year rather than monthly periods and I need to look up the period based on the date. What formula can I use to look up a date and return the period?

I have the following:


[TABLE="width: 500"]
<tbody>[TR]
[TD]Start Date[/TD]
[TD]End Date[/TD]
[TD]Period[/TD]
[/TR]
[TR]
[TD]4/1/18[/TD]
[TD]4/28/18[/TD]
[TD]Period 01[/TD]
[/TR]
[TR]
[TD]4/29/18[/TD]
[TD]5/26/18[/TD]
[TD]Period 02[/TD]
[/TR]
[TR]
[TD]5/27/18[/TD]
[TD]6/23/18[/TD]
[TD]Period 03[/TD]
[/TR]
[TR]
[TD]6/24/18[/TD]
[TD]7/21/18[/TD]
[TD]Period 04[/TD]
[/TR]
[TR]
[TD]7/22/18[/TD]
[TD]8/18/18[/TD]
[TD]Period 05[/TD]
[/TR]
[TR]
[TD]8/19/18[/TD]
[TD]9/15/18[/TD]
[TD]Period 06[/TD]
[/TR]
[TR]
[TD]9/16/18[/TD]
[TD]10/13/18[/TD]
[TD]Period 07[/TD]
[/TR]
[TR]
[TD]10/14/18[/TD]
[TD]11/10/18[/TD]
[TD]Period 08[/TD]
[/TR]
[TR]
[TD]11/11/18[/TD]
[TD]12/8/18[/TD]
[TD]Period 09[/TD]
[/TR]
[TR]
[TD]12/9/18[/TD]
[TD]1/5/19[/TD]
[TD]Period 10[/TD]
[/TR]
[TR]
[TD]1/6/19[/TD]
[TD]2/2/19[/TD]
[TD]Period 11[/TD]
[/TR]
[TR]
[TD]2/3/19[/TD]
[TD]3/2/19[/TD]
[TD]Period 12[/TD]
[/TR]
[TR]
[TD]3/3/19[/TD]
[TD]3/30/19[/TD]
[TD]Period 13
[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Assuming that your table is in A1:C14 with headers in row 1, perhaps something like

=LOOKUP(TODAY(),$A$2:$A$14,$C$2:$C$14)
 
Upvote 0
Try a Lookup


Excel 2010
ABCD
1StartPeriodDatePeriod
2Apr 01, 18Period 01Jun 15, 18Period 03
3Apr 29, 18Period 02Jun 15, 18Period 03
5a
Cell Formulas
RangeFormula
D2=LOOKUP(C2,A2:B14)
D3=LOOKUP(C2,{43191,"Period 01";43219,"Period 02";43247,"Period 03";43275,"Period 04";43303,"Period 05";43331,"Period 06";43359,"Period 07";43387,"Period 08";43415,"Period 09";43443,"Period 10";43471,"Period 11";43499,"Period 12";43527,"Period 13"})
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,853
Members
452,361
Latest member
d3ad3y3

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