I have some difficulty to generate a bar chart report with Power View 2013. My problem is mainly because of the data set I have, something like this:
KeyId | DisplayName | Value |
Action | Action | 400 |
Action|Movies | Movies | 100 |
Action|Movies|2 Days in Paris | 2 Days in Paris | 10 |
Action|Movies|Bel Ami | Bel Ami | 20 |
Action|Movies|Blue Demon | Blue Demon | 15 |
Action|TV Shows | TV Shows | 80 |
Action|TV Shows|The Fall | The Fall | 20 |
Action|TV Shows|Zookeeper | Zookeeper | 10 |
My goal is to have bar chart, on the first view, only show 'Action' with 400, click on this bar, it shows 'Movies' and 'TV Shows' with value 100 and 80 prespectively. Then click on either 'Movies' or 'TV Shows' bar, then it display bars represent show titles.
I used PATHITEM function created 3 colums like this:
KeyId | DisplayName | Value | Genre | Category | Title |
---|---|---|---|---|---|
Action | Action | 400 | Action | ||
Action|Movies | Movies | 100 | Action | Movies | |
Action|Movies|2 Days in Paris | 2 Days in Paris | 10 | Action | Movies | 2 Days in Paris |
Action|Movies|Bel Ami | Bel Ami | 20 | Action | Movies | Bel Ami |
Action|Movies|Blue Demon | Blue Demon | 15 | Action | Movies | Blue Demon |
Action|TV Shows | TV Shows | 80 | Action | TV Shows | |
Action|TV Shows|The Fall | The Fall | 20 | Action | TV Shows | The Fall |
Action|TV Shows|Zookeeper | Zookeeper | 10 | Action | TV Shows | Zookeeper |
And I created a hieriachy called Shows, and added the 3 newly created columns to this hieriachy. I am able to get the drillthrough feature, however, notice my data, the Action|Movies value (100) in our scenario indicate the top 10 movies in the category, and does not equal to the sum value (10+20+15=45) of the movies on this list.
Use Matrix, I can list the data in proper hieriachy. However, I am not able to do it with bar or column chart in Power View 2013.
Does anyone has suggestion? Do I need to do more data modeling on this in order to reach my goal, or it's imposible because the bar/column chart always summarize values in its own fashion?
Thank you very much!
Eunice