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] ) )
tamerj1
Community Champion
4 years agoHi Anonymous
Sorry my mistake. the 2nd matrix was wrong. Please double check and confirm which one
This
| investor | entity a | entity c | COLUMN SUBTOTAL |
| X | 1 | 2 | 2 |
| Y | 1 | 1 |
Or this
| investor | entity a | entity c | COLUMN SUBTOTAL |
| X | 1 | 1 | 2 |
| Y | 1 | 1 |
Anonymous
4 years agoNot applicable
The second one. I want an entry in the matrix if any relationship exists like a boolean (0 or 1) in this case and the subtotal to be the sum of relationships for each investor. Thanks so much.