+ Reply to Thread
Results 1 to 11 of 11

How to find a value based on fiscal year end

  1. #1
    Registered User
    Join Date
    03-06-2014
    Location
    Boston
    MS-Off Ver
    Excel 2007
    Posts
    14

    How to find a value based on fiscal year end

    I don't know why I'm struggling with this so much since it seems like a simple formula.

    So let's assume I have 3 or more fiscal year ends for 3 years, 2/28, 3/31, 5/31

    Column A Column B Column C
    2/28/2012 2/28/2013 2/28/2014
    3/31/2012 3/31/2013 3/31/2014
    5/31/2012 3/31/2013 5/31/2014

    So what I need is a formula that will return a values from column D if the date of the invoice falls between the above dates (based on fiscal year), and sum them together.

    I hope that's enough information but if you need more please let me know.

  2. #2
    Valued Forum Contributor
    Join Date
    04-22-2014
    Location
    Auckland, New Zealand
    MS-Off Ver
    Office 365 (work) and Excel 2013 (home)
    Posts
    1,167

    Re: How to find a value based on fiscal year end

    You could use a SUMIFS function.
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Replace the square brackets with the appropriate ranges or values.
    Please add reputation by clicking on the * if I have helped.
    Please mark the thread SOLVED if your issue has been resolved.
    Thanks, Glenn.

  3. #3
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: How to find a value based on fiscal year end

    Take a look at using SUMIFs() for this. If you provide a small sample workbook, I will see what I can put together for you
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  4. #4
    Registered User
    Join Date
    03-06-2014
    Location
    Boston
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: How to find a value based on fiscal year end

    Here is a sample.
    Attached Files Attached Files

  5. #5
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,939

    Re: How to find a value based on fiscal year end

    This may not line up exactly with your YE dates, so you can modify if needed...
    =SUMPRODUCT((YEAR($D$3:$D$17)=2013)*$E$3:$E$17)

  6. #6
    Registered User
    Join Date
    03-06-2014
    Location
    Boston
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: How to find a value based on fiscal year end

    That will only sum values that have the same calendar year end. What I need is based on FYE.

    I would like to sum values, per fund, that fall between two dates.
    So in case of fund RDSE I need to add values that fall between 3/1/2013 and 2/28/2014.

    Not keep in mind that there are multiple funds and multiple year ends so formula should take all those into consideration.

    I've attached updated worksheet.
    Attached Files Attached Files

  7. #7
    Valued Forum Contributor
    Join Date
    04-22-2014
    Location
    Auckland, New Zealand
    MS-Off Ver
    Office 365 (work) and Excel 2013 (home)
    Posts
    1,167

    Re: How to find a value based on fiscal year end

    Can you please clarify, is it the end date that is important? Or would those same RDSE amounts also be included in the previous year as they were started before 31 March 2013?

  8. #8
    Registered User
    Join Date
    03-06-2014
    Location
    Boston
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: How to find a value based on fiscal year end

    End date is important because that determines year end for each fund.

    So in case of RDSE:

    4/1/2012 to 3/31/2013, FYE is 3/31/2013, Total should be = 875.12
    4/1/2013 to 3/31/2014, FYE is 3/31/2014, Total should be = 721.24 (wrongly placed in 2013 in my sheet, should me under 2014)

    In other words I would like to have totals per fund and per FYE. Totals should be summed per year.

    Sorry if I make no sense, it's been a long day.

  9. #9
    Registered User
    Join Date
    03-06-2014
    Location
    Boston
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: How to find a value based on fiscal year end

    Let me add this as well:

    RDSE 31-Mar 9/1/2011 2/29/2013 875.12 - FYE = 3/31/2013 so it should sum under 2013
    RDSE 31-Mar 9/1/2012 8/31/2013 308.58 - FYE = 3/31/2014 so it should sum under 2014 (anything after FYE belongs to the following year)
    RDSE 31-Mar 9/1/2012 8/31/2013 38.70 - FYE = 3/31/2014 so it should sum under 2014 (anything after FYE belongs to the following year)
    RDSE 31-Mar 9/1/2012 8/31/2013 373.96 - FYE = 3/31/2014 so it should sum under 2014 (anything after FYE belongs to the following year)

  10. #10
    Valued Forum Contributor
    Join Date
    04-22-2014
    Location
    Auckland, New Zealand
    MS-Off Ver
    Office 365 (work) and Excel 2013 (home)
    Posts
    1,167

    Re: How to find a value based on fiscal year end

    This in I3 and dragged down and across should work:
    Formula: copy to clipboard
    Please Login or Register  to view this content.

  11. #11
    Registered User
    Join Date
    03-06-2014
    Location
    Boston
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: How to find a value based on fiscal year end

    Looks good, thanks so much for your help.

+ 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. how to convert date to fiscal year if fiscal year start at 16th or 17th of July
    By sushil shakya in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 04-28-2013, 03:32 AM
  2. Excel fiscal year calendar color formatting based on user input from dates.
    By mdjco in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 07-12-2012, 03:30 PM
  3. Determining Fiscal Year based on date
    By ncmal in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 07-15-2010, 04:46 PM
  4. adding based on fiscal year
    By mamig in forum Excel General
    Replies: 4
    Last Post: 04-06-2010, 11:19 AM
  5. To automatically give fiscal period/fiscal year
    By Turnipboy in forum Excel General
    Replies: 7
    Last Post: 01-19-2006, 05:15 PM

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