I can't get to show items with no data in PowerPivot.
This is the simplified data that I am working on. Product Number / sold week / sold qty.
Product | Week | Qty |
1000 | W01 | 120 |
1001 | W02 | 130 |
1002 | W03 | 150 |
1000 | W01 | 150 |
.
And this is the pivot that I created out of this raw data. All product numbers are shown.
Sum of Qty | Column Labels | |||
Row Labels | W01 | W02 | W03 | Grand Total |
1000 | 270 | 270 | ||
1001 | 130 | 130 | ||
1002 | 150 | 150 | ||
Grand Total | 270 | 130 | 150 | 550 |
Let's say I want to show only W03 data. when I select W03, the result looks like below.
but I want to keep showing all product.
Sum of Qty | Column Labels | |
Row Labels | W03 | Grand Total |
1002 | 150 | 150 |
Grand Total | 150 | 150 |
I am enabling show items with no data on rows and columns from PivotTable options. But it's not working :(
Can somebody please teach me how to leave all products on rows while I select specific week?