+ Reply to Thread
Results 1 to 3 of 3

Count Quarters and Years from half way through the year (not calender year)

  1. #1
    Registered User
    Join Date
    02-09-2013
    Location
    France
    MS-Off Ver
    Excel 2007
    Posts
    50

    Count Quarters and Years from half way through the year (not calender year)

    Guys,

    Looking for a little bit of help.

    Monthly cash flow
    Say I have a monthly cash flow which starts from October 2012.
    I want it to say in the cell below (looking at the dates above) that October 2012, November 2012 and December 2012 are Quarter 1 (not 4, as per the calender). Then, Jan, Feb and March 2014 would be 2...any ideas?

    I mananged to solve this for years by using: =DATEDIF($A$1,A3,"y")+1

    Count calender years

    Slightly differently, can you count the calender years starting from my cash flow. So Oct, Nov and Dec 2012 = 1, then Jan, Feb etc = 2?

    Thanks

  2. #2
    Forum Expert ben_hensel's Avatar
    Join Date
    01-26-2012
    Location
    Northeast USA
    MS-Off Ver
    Office 365
    Posts
    2,043

    Re: Count Quarters and Years from half way through the year (not calender year)

    For the quarters, this is a little ugly, but...

    =IF(CEILING((MONTH(date))/3, 1) =4, 1, CEILING((MONTH(date))/3, 1) +1)



    If you want "calender years since start", with the first year as year zero, woudn't that be something like,

    =YEAR(start_date) - YEAR(assessment_date) +1

  3. #3
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,728

    Re: Count Quarters and Years from half way through the year (not calender year)

    Suppose you have the start date of your accounting period in cell A1 (i.e. 1st October 2012), and other dates on the top row starting with C1 - then you can put this formula in C2:

    ="Q"&MOD(INT((MONTH(C1-$A$1+1463)-1)/3),12)+1

    and copy it across. To get the relative year, you can put this formula in C3:

    =YEAR(C1)-YEAR($A$1)+1

    and copy that across.

    Hope this helps.

    Pete

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Good lookups for quarters, year, and year to date
    By amartino44 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 09-06-2013, 03:41 PM
  2. Need to convert a date to half year convention then count the months...
    By Milkie in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-14-2013, 06:05 PM
  3. Transpose Quarters from Calendar Year to Fiscal Year
    By jodiander in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 06-25-2013, 01:00 PM
  4. Replies: 4
    Last Post: 06-23-2011, 11:45 AM
  5. how do I convert a dates in a year quarters in a year?
    By Linndek in forum Excel General
    Replies: 5
    Last Post: 05-11-2006, 10:35 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1