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.
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 workingHowever, 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 DistinctClaimDetail.AccountFROMClaimDetailORDER BY ClaimDetail.AccountThe other dataset has the amount and account fields…this particular dataset has a WHERE statement:SELECT DISTINCTClaimDetail.PlanPaidClaimDetail.CountClaimDetail.AccountFROMClaimDetailWHERE (ClaimDetail.Account = @Account)Does anything stick out that I should change or try? What am I missing?Thanks!!J |
|
|
|
|