Where condition for fiscal year

  • Hi,
    I am using below query to get the data by fiscal year . I want to get the data for only last 2 fiscal years (i.e starting from Feb 2017 till now).Right now i have year hardcoded. any way to get it using sql functions?

    SELECT  fiscal_year AS [Year]
    ,  fiscal_quarter AS [Quarter]
    ,  COUNT(id) AS ID
    FROM test
    CROSS APPLY ( VALUES(DATEPART(YEAR, DATEADD(MONTH, -1, addeddate)), DATEPART(QUARTER, DATEADD(MONTH, -1, addeddate))) ) f(fiscal_year, fiscal_quarter) where fiscal_year>'2017'
    GROUP BY fiscal_year, fiscal_quarter
    ORDER BY fiscal_year, fiscal_quarter

    Thanks

  • Papil - Wednesday, January 16, 2019 10:48 AM

    Hi,
    I am using below query to get the data by fiscal year . I want to get the data for only last 2 fiscal years (i.e starting from Feb 2017 till now).Right now i have year hardcoded. any way to get it using sql functions?

    SELECT  fiscal_year AS [Year]
    ,  fiscal_quarter AS [Quarter]
    ,  COUNT(id) AS ID
    FROM test
    CROSS APPLY ( VALUES(DATEPART(YEAR, DATEADD(MONTH, -1, addeddate)), DATEPART(QUARTER, DATEADD(MONTH, -1, addeddate))) ) f(fiscal_year, fiscal_quarter) where fiscal_year>'2017'
    GROUP BY fiscal_year, fiscal_quarter
    ORDER BY fiscal_year, fiscal_quarter

    Thanks

    Please supply the DDL for your source table.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • You should avoid using functions on columns in WHERE and ON clauses and your fiscal_year is actually shorthand for a function on a column, so you should rewrite your WHERE clause to not use a function.  I'll leave it to you to try to figure out what the correct expression is.

    WHERE addeddate >= <some expression>

    Drew

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • drew.allen - Wednesday, January 16, 2019 3:17 PM

    You should avoid using functions on columns in WHERE and ON clauses and your fiscal_year is actually shorthand for a function on a column, so you should rewrite your WHERE clause to not use a function.  I'll leave it to you to try to figure out what the correct expression is.

    WHERE addeddate >= <some expression>

    Drew

    I meant function for date. I have already put the where condition in the sql i posted. I need expression for beginning of fiscal year 2 years from now. Starting 2017 Q1. i can put " where addeddate>'2017 Q1' " but is there any other expression i can use?

  • Papil - Thursday, January 17, 2019 7:16 AM

    drew.allen - Wednesday, January 16, 2019 3:17 PM

    You should avoid using functions on columns in WHERE and ON clauses and your fiscal_year is actually shorthand for a function on a column, so you should rewrite your WHERE clause to not use a function.  I'll leave it to you to try to figure out what the correct expression is.

    WHERE addeddate >= <some expression>

    Drew

    I meant function for date. I have already put the where condition in the sql i posted. I need expression for beginning of fiscal year 2 years from now. Starting 2017 Q1. i can put " where addeddate>'2017 Q1' " but is there any other expression i can use?

    There is a well-known formula for calculating the beginning of the current calendar year.  You've been shown how to adjust calendar year formulas to work with fiscal years.  Given the beginning of this fiscal year, you should be able to easily calculate the beginning of last fiscal year.  See if you can put it all together and then use that in your WHERE clause.

    WHERE addeddate >= <beginning of last fiscal year>

    Drew

    J. Drew Allen
    Business Intelligence Analyst
    Philadelphia, PA

  • The last time I looked, the GAAP had over 157 different fiscal years. The best way to do this is to set up a calendar table that maps your fiscal year weeks and fiscal year months back into the standard common error calendar. Remember that, SQL is a data language, not a computational language. Trying to do this sort of thing with temporal computations is like trying to alphabetize Chinese. The fundamental structure of your tool doesn't support the concept you are trying to use.

    Please post DDL and follow ANSI/ISO standards when asking for help. 

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply