Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2012 Forums
 Analysis Server and Reporting Services (2012)
 report on specific data range AND specific client

Author  Topic 

jbroedel
Starting Member

1 Post

Posted - 2014-08-10 : 09:38:54
Hi everyone!

Im new to SSRS and have recently built a SQL Server 2012 DB including a table that has all fields I wish to report on.

I have successfully created some basic reports in SSRS using Report Builder.

What Im looking to report on is a specific Account field, PlanPaid field, and date field. Easy. I have created a parameter that gives me the date range option (@startDate, @enddate), as well as a parameter that gives me a client drop down menu (@account with available values pointed to the account field for the dataset below) to select the appropriate client. All working

However, when I choose a date range and client, I’m returned the “total YTD/lifetime PlanPaid amount for the Account” not the PlanPaid amount just for the specific date range I selected.
I have two datasets, one dataset has the account field, using this query:

SELECT Distinct
ClaimDetail.Account
FROM
ClaimDetail
ORDER BY ClaimDetail.Account

The other dataset has the amount and account fields…this particular dataset has a WHERE statement:

SELECT DISTINCT
ClaimDetail.PlanPaid
ClaimDetail.Count
ClaimDetail.Account
FROM
ClaimDetail
WHERE (ClaimDetail.Account = @Account)

Does anything stick out that I should change or try? What am I missing?

Thanks!!
J
   

- Advertisement -