how do I convert a dates in a year quarters in a year?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

For instance if I have a series of dates within a number of years, but I want
to represent them as 1st Quarter 2005, 3rd Quarter 2006 etc
 
You would need extra cells with formulas for that, there is no way of
formatting dates to quarters
Besides what are your quarters, it depends on the financial year or are
talking strictly calendar like Jan-Mar = 1st quarter

--

Regards,

Peo Sjoblom

Excel 95 - Excel 2007
Northwest Excel Solutions
www.nwexcelsolutions.com
"It is a good thing to follow the first law of holes;
if you are in one stop digging." Lord Healey
 
Here is a formula that will produce a slightly truncated view, Q# YYYY
="Q"&ROUNDUP(MONTH(A1)/3,0)&" "&YEAR(A1)

This formula will derive what you ask for in your post. It's longer
because each of the 4 quarters has a different suffix (st, nd, rd, th).
=IF(ROUNDUP(MONTH(A1)/3,0)=1,"1st Quarter
"&YEAR(A1),IF(ROUNDUP(MONTH(A1)/3,0)=2,"2nd Quarter
"&YEAR(A1),IF(ROUNDUP(MONTH(A1)/3,0)=3,"3rd Quarter
"&YEAR(A1),IF(ROUNDUP(MONTH(A1)/3,0)=4,"4th Quarter "&YEAR(A1)))))
 

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

Back
Top