I have a Dataset based on a query that produces a table roughly as follows:
Desc | Year | Labour | Material |
11011 | 2008 | 876 | 1132 |
2009 | 4490 | 2799 | |
2010 | 2993 | 497 | |
2011 | 2447 | 2942 | |
2012 | 0 | 444 | |
2013 | 0 | 0 | |
11012 | 2008 | 1178 | 467 |
2009 | 443 | 188 | |
2010 | 12519 | 2388 | |
2011 | 3539 | 1126 | |
2012 | 1143 | 147 | |
etc. |
In Report Builder, I have created a List, and within the List, a Bar Chart. The Tablix of the list has the Dataset oriented to the correct Dataset (WO, in this case). The Category field is set to Year, and the Data fields are Labour and Material.
I want a simple bar chart that shows Labour and Material costs by year for each item (Desc) (i.e. page 1 would show 11011, page 2 would show 11012).
All I get is the error: "An error occurred during local report processing. The definiton of the report '' is invalid. The chart 'Chart1' has a detail member with inner members. Detail members can only contain static inner members."
A key frustration is I cannot find a definition of 'detail member' or 'inner member', certainly not 'static inner members', other than:
A dynamic member that has no descendant group expressions..msdn.microsoft.com/en-us/library/ee240603.aspx
which is very unhelpful.
Please advise regarding what I am missing.
Thank you, jay