fiscal quarter conversion

T

Ted McCastlain

Hello all,

I am needing help converting dates to fiscal quarter. Our fiscal
quarter begins on April.

I basically have a cell where I am inputting dates and in another cell
they are converted to "Q107", "Q207", etc.

Thanks for the help...
 
G

Guest

Will this do ..

="Q"&LOOKUP(MONTH(A1),{1,4,7,10},{4,1,2,3}) &"07"

A1 contains DATE (in date format)
 
D

Dave Peterson

I like this format: FY2006-Q1
It makes it much easier to sort by FY-Q (in calendar order) if you need to.

If you want this style:
="FY"&YEAR(A1)+(MONTH(A1)>=4)&"-Q"&INT(1+MOD(MONTH(A1)-4,12)/3)

But if you want Q107 style:
="Q"&INT(1+MOD(MONTH(A1)-4,12)/3)&RIGHT(YEAR(A1)+(MONTH(A1)>=4),2)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top