Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like to be able to identify the quarter and fiscal
year of any given date of the year. Also our fiscal years start in July. So for example, any date from Jul 1,2004 to Sep 30,2004 = FY05 Q1, Oct 1,2004 to Dec 31,2004 = FY05 Q2, Jan 1,2005 to Mar 31,2005 = FY05 Q3, and so on.... Thanks in advance for your help. Kind regards, D S K |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
="FY"&TEXT(DATE(YEAR(A2),MONTH(A2)+6,1),"yy")&"
Q"&(INT(MONTH(DATE(YEAR(A2),MONTH(A2)+6,1))/4+1)) -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "D S K" wrote in message ... I would like to be able to identify the quarter and fiscal year of any given date of the year. Also our fiscal years start in July. So for example, any date from Jul 1,2004 to Sep 30,2004 = FY05 Q1, Oct 1,2004 to Dec 31,2004 = FY05 Q2, Jan 1,2005 to Mar 31,2005 = FY05 Q3, and so on.... Thanks in advance for your help. Kind regards, D S K |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I convert a specific date to a fiscal quarter ? | Excel Discussion (Misc queries) | |||
Fiscal Quarter Conversion | Excel Worksheet Functions | |||
fiscal quarter conversion | Excel Discussion (Misc queries) | |||
fiscal quarter data validation | Excel Worksheet Functions | |||
Date formula: return Quarter and Fiscal Year of a date | Excel Discussion (Misc queries) |