How can I have a Visual Studio Report(.rdlc) with account information and also a chart in the same r

Posted by Paul Mendoza on Stack Overflow See other posts from Stack Overflow or by Paul Mendoza
Published on 2010-03-16T20:36:35Z Indexed on 2010/03/17 9:01 UTC
Read the original article Hit count: 270

I'm working on a report in Visual Studio 2008 with their Report tooling and I'm not sure how to approach this conceptually.

I have a report I want to generate. At the top of the report will be a bunch of information about a customer of our site (Name, Address, Phone). Then below will be a chart of the purchases that customer has each month.

My problem is that I want the content at the top of the page to use a query that selects from my Users table in my database. But then I need another query that gets all of the purchases grouped by month.

I've thought one way to approach this would be to place a subreport on the parent report that only contained the chart. The parent report would have the details of the account.

Is this the correct approach?

© Stack Overflow or respective owner

Related posts about rdlc

Related posts about reporting-services