Forum Discussion
philjohn
2 years agoFrequent Visitor
Proportional Calculation Ignoring Filters
Help, what I'm trying to achieve I have a series of Topics collected from documents, mentioned across time via date On some dates we collected more documents, therefore it looks like topics are ...
- 2 years ago
philjohn , Try like
Proportional = DIVIDE(
COUNT('doc_classification'[classification]),
calculate(COUNT('doc_classification'[classification]), all('doc_classification'[classification])) ,
0
)
amitchandak
2 years agoSuper User
philjohn , Try like
Proportional = DIVIDE(
COUNT('doc_classification'[classification]),
calculate(COUNT('doc_classification'[classification]), all('doc_classification'[classification])) ,
0
)
- philjohn2 years agoFrequent Visitor
Wrap it in a calculate! So close, yet so far - thank you so much