Forum Discussion
Anonymous
4 years agoNot applicable
HELP: Matrix Column Subtotals Type different Summarization Type from Values
Hi Community, Is there a way to change the type for matrix subtotals ? Let me explain the issue I have. Imagine I have two tables entities: entity country value a UK 5 b USA ...
- 4 years ago
Hi Anonymous
Here is the updated solution as per your requirement https://www.dropbox.com/t/4TYzPYWvbgrSkoooCount = IF ( ISINSCOPE (entities[entity] ), DISTINCTCOUNT ( relationships[investor] ), DISTINCTCOUNT ( relationships[entity] ) )
Anonymous
4 years agoNot applicable
Hi tamerj1 , thanks for the quick reply. What I am looking for is the first one. I want the subtotal to show the number of entries in each row.
tamerj1
Community Champion
4 years agoAnonymous
Please try this solution https://www.dropbox.com/t/LMuorjaEkk8Qx4uS
Count =
IF (
ISINSCOPE (entities[entity] ),
COUNTA ( relationships[investor] ),
DISTINCTCOUNT ( relationships[investor] )
)- Anonymous4 years agoNot applicable
I do not really care about the totals per entity. This shows how many relationship each entity has, but it still only shows that each investor has only 1 relationship in total, although X has two relationships (with a and c)