+ Reply to Thread
Results 1 to 5 of 5

Change Date to Fiscal Year

  1. #1
    Registered User
    Join Date
    05-13-2013
    Location
    Houston
    MS-Off Ver
    Excel 2010
    Posts
    16

    Angry Change Date to Fiscal Year

    I am having some serious issues trying to convert a specific date to a FY Year date. For instance, Jan, Feb, Mar is 3rd Quarter of the prior year. So, Jan 2013 is actually Q3-12. Please help! I was trying to use an IF statement but just cant get it right: =(IF("Q3-"&MONTH(S1004)<4,(YEAR(S1004)),IF("Q4-"&MONTH(S1004)<7,(YEAR(S1004)),IF("Q1-"&MONTH(S1004)<10,(YEAR(S1004)),IF("Q2-"&MONTH(S1004)<12,(YEAR(S1004))))))) doesnt work

    Thanks in advance!!!

  2. #2
    Valued Forum Contributor
    Join Date
    10-10-2012
    Location
    New York
    MS-Off Ver
    Excel 2007/2010
    Posts
    337

    Re: Change Date to Fiscal Year

    try this
    =(IF(MONTH(A1)<4,"Q3-"&(YEAR(A1)-1),IF(MONTH(A1)<7,"Q4-"&(YEAR(A1))-1,IF(MONTH(A1)<10,"Q1-"&(YEAR(A1)),IF(MONTH(A1)<13,"Q2-"&(YEAR(A1)))))))
    Don't just use the answers provided for you. Try to understand how it works by reverse engineering or asking about it.

    Please mark the thread as [SOLVED] (Thread Tools->Mark thread as Solved) when answered.
    If you're happy with an answer given, please click the * under the person's name to boost their reputation.

  3. #3
    Forum Contributor
    Join Date
    01-30-2013
    Location
    Wales
    MS-Off Ver
    Excel 2013
    Posts
    231

    Re: Change Date to Fiscal Year

    How about:-
    in A1 I've got the date that you want to change the formatting. In B1 I've got the FY start date, assuming its the first of a month.

    In B3 I put the following formula:-
    ="Q" & INT((MONTH(A1)+12*(YEAR(A1)>YEAR(B1))-MONTH(B1)+3)/3) & "-" & YEAR(B1)

    Hope this helps.

    Chris

  4. #4
    Registered User
    Join Date
    05-13-2013
    Location
    Houston
    MS-Off Ver
    Excel 2010
    Posts
    16

    Re: Change Date to Fiscal Year

    This works perfectly Craig!!! Thanks!!!!

    @Chris, in B1, do you mean if August 1 is the FY start date then you would put August 1? no year?

  5. #5
    Forum Contributor
    Join Date
    01-30-2013
    Location
    Wales
    MS-Off Ver
    Excel 2013
    Posts
    231

    Re: Change Date to Fiscal Year

    In B1 put the start of the current financial year. with the year.

+ 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. [SOLVED] Create Fiscal Year - Lookup Date in Fiscal Month Date Range and Return EOM Date
    By gbriscoe in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 03-25-2013, 03:29 PM
  3. VBA Code to detect change in fiscal year between dates
    By miam in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-25-2011, 03:33 AM
  4. Determine if date is before end of fiscal year of previous year
    By ccarver in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 12-13-2010, 11:53 AM
  5. Calculate Fiscal Year From A Date
    By Determined in forum Excel General
    Replies: 7
    Last Post: 04-18-2007, 07:47 AM

Tags for this Thread

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