Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 "Linndek" wrote in message ... 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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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))))) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
entering items on specific dates of year | Excel Discussion (Misc queries) | |||
How do I Turning Dates into Quarters | Excel Worksheet Functions | |||
How sort dates just by day/month and NOT year if all 3 given in ce | Excel Worksheet Functions | |||
How can I hide points for future dates on a Year to Date chart? | Charts and Charting in Excel | |||
Convert text to dates | Excel Worksheet Functions |