Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9111367
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T03:29:16+00:00 2026-06-17T03:29:16+00:00

I have a query that runs based on the end date picked. Essentially the

  • 0

I have a query that runs based on the “end date” picked. Essentially the user picks the end date, and the query will run the report for the entire YTD based on the end date. So for example if I select “12/3/12” it should run the report from 1/1/12 – 12/3/12. This works if you run it ON the day… Today I tried to run it for end date “12/31/12” however I return no results because I think it’s trying to get the start date based on today’s date? Below is my query:

SELECT        Store_Number, COUNT(DISTINCT Customer_Email_Address) AS Customer_email_address, COUNT(DISTINCT Invoice_Number) AS [Total Cars], 
                         @enddate AS End_Date, DATEADD(yy, DATEDIFF(yy, 0, GETDATE()), 0) AS Start_Date
FROM            Invoice_Tb
WHERE        (Invoice_Date BETWEEN DATEADD(yy, DATEDIFF(yy, 0, GETDATE()), 0) AND CONVERT(Datetime, @enddate, 102))
GROUP BY Store_Number
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T03:29:17+00:00Added an answer on June 17, 2026 at 3:29 am

    Replace the GetDate() with the @enddate parameter and it should work:

    SELECT        
        Store_Number, 
        COUNT(DISTINCT Customer_Email_Address) AS Customer_email_address, 
        COUNT(DISTINCT Invoice_Number) AS [Total Cars], 
        @enddate AS End_Date, 
        DATEADD(yy, DATEDIFF(yy, 0, @enddate), 0) AS Start_Date
    FROM Invoice_Tb
    WHERE (Invoice_Date BETWEEN DATEADD(yy, DATEDIFF(yy, 0, @enddate), 0) 
                        AND CONVERT(Datetime, @enddate, 102))
    GROUP BY Store_Number
    

    If you query:

    declare @enddate datetime = '12/31/2012'
    
    select DATEADD(yy, DATEDIFF(yy, 0, @enddate), 0)
    

    It will return 2012-01-01 which is what you want.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following query that runs in my Oracle database and I want
I have a quite complex multi-join TSQL SELECT query that runs for about 8
For example I have a mysql query that gets some data. Then runs another
I have a Delphi 2009 application that runs a query over a database using
I have a php script that runs a mysql query, then loops the result,
I am using in C# MYsql .I have query that works if I run
I have an Sql query that looks up a person based on SSN and
I have this query that runs fine: SELECT Value FROM data WHERE MetaDataID =
I have a Report Server that runs SSRS 2008 R2 Standard. This server retrieves
I have two functions that will open and save two diffrent reports based on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.