Forum Discussion
JSebastianBN
7 months agoRegular Visitor
Rows without data showing subtotals
Hi, below you can see my example (below the data): The column "Sum of SP" has values at row values F and it computes the subtotals at row C levels and E levels. The column "Sum of STSP" only ...
- 7 months ago
You are welcome.
If you want to compare STSP with SP, maybe you can remove the third level, since the comparison at that level is meaningless.
If my solution works, please accept it and appreciate your kudos as well.
cengizhanarslan
Super User
7 months agoLooks like you have some problem within your relations in your model. You could use a measure like below as an example but I think it won't be a perfect solution here. It would be the best if you share a .pbix example.
STSP =
IF (
ISINSCOPE ( 'Dim'[C] ) || ISINSCOPE ( 'Dim'[F] ),
BLANK(),
[Sum of STSP]
)JSebastianBN
7 months agoRegular Visitor
Hi, I just added the data to the post. Thanks!