0

i want to create my report(rdlc) like this in the picture.I am using reportdefiniton 2005.please help how to group it like this

http://i58.tinypic.com/2vl0dx1.jpg

Chris Latta
  • 20,316
  • 4
  • 62
  • 70

1 Answers1

0

It has been awhile since I worked with 2005 and I don't have a copy handy to give you specific instructions.

Basically you need to make two groups on your tablix. Manufacturer will be the parent group of the category field. Then use the details row to show Model and Quantity Sold.

Mike D.
  • 4,034
  • 2
  • 26
  • 41
  • how aboutadding line total,i want to get the total quantity sold per category.what to do? – user3662929 May 22 '14 at 04:37
  • At least in 2008 R2 there was an option to add group totals in the context menu of the tablix. But if that isn't there in 2005 you can do it in the group or table footer (depending where it needs to be). Just use the SUM() aggregate function in the expression and it will sum that field for the current scope (the group for the footer, or the entire table). – Mike D. May 22 '14 at 05:36