OK.Here's the SelectSELECT DISTINCT [Payments Detail].TenderType, T_Centres.NAME AS Centre_Name, [Payments Detail].PaymentId, [Payments Detail].CentreId, [Payments Detail].PaymentDateFROM [Payments Detail] INNER JOIN T_Centres ON [Payments Detail].CentreId = T_Centres.IdWHERE ([Payments Detail].TenderType = @TenderType OR @TenderType = 'All') AND ([Payments Detail].PaymentDate BETWEEN @PaymentDate AND @PaymentDate2) AND (T_Centres.NAME = @CentreName) OR ([Payments Detail].TenderType = @TenderType OR [Payments Detail].TenderType = 'All') AND ([Payments Detail].PaymentDate BETWEEN @PaymentDate AND @PaymentDate2) AND (@CentreName = 'All')
But forget about the above for a moment.Pretend that this is the Select:Select TansactionID, TenderType, SiteFrom Details
Lets say that this returns 750 rows over 4 pages. Each rows resembles this:TranID TenderTpe Site------ --------- ----ID3423 Cash London
So all I want my report to do is display the number of transactions for a user selected site.So in the Header row (not the Detail row) of my layout, I add these to 3 seperate columns:Column1=Count(Fields!TranID.Value,"SportSoft") Column2=(Parameters TenderType.Value)Column3=Parameters!Site.Value
When I run the report, it correctly returns the required result:No of transactions Tender Type Site 750 Cash London
So what's the problem?The problem is the report is saying Page 1/4.When I look at Page 2,3 and 4, they are all blank. I think it is displaying all transactions, but because I have not specified to see each transaction in the layout, the pages are blank. I want it to display Page 1/1 with the result on 1 line at the top of the page 1, otherwise when the user tries to print/export there will be 3 blank pages.ThanksDrew