Hi,
We have a tabular model with this structure:
Fact
--------------------
| Object | Id Type |
| P1 | 1 |
| P2 | 2 |
| P3 | 3 |
| P4 | 1 |
| P5 | 2 |
| P6 | 3 |
| P7 | 1 |
| P8 | 2 |
| P9 | 3 |
| P10 | 1 |
Dimension
-------------------------
| Parent | Id Type |
| A | 1 |
| A | 2 |
| B | 3 |
In the dimension we have defined a hierarchy (Parent --> Id Type).
We need to understand how the model works because when I use on a pivot table the attribute and the hierarchy it shows inconsistent results, as you can see on the next table.
| Id Type (hierarchy) | Id Type (dimension) | ||
| Rows | 1 | 2 | 3 |
| A 1 | 4 | 4 | 4 |
| A 2 | 3 | 3 | 3 |
*Measure 1 = count(type)
Is there any possibility to show a blank instead of a repeated values?
Thanks in advance.