Forum Discussion
HELP: Matrix Column Subtotals Type different Summarization Type from Values
- 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] ) )
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.
- tamerj14 years ago
Community Champion
Hi Anonymous
Sorry my mistake. the 2nd matrix was wrong. Please double check and confirm which oneThis
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 - Anonymous4 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.
- tamerj14 years ago
Community Champion
Anonymous
Please try this solution https://www.dropbox.com/t/LMuorjaEkk8Qx4uSCount = 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)