Forum Discussion
ashuaswinireddy
2 years agoHelper I
Substract Total count from specific event
Hello All, I have below Data Number Category Event 123 UN MV1 124 UN MV2 128 IM MB1 129 IM MB2 137 FE MB1 189 IM MB2 190 UN SO 198 FE PO 200 IM ...
- 2 years ago
Creating aggregated table referencing below link helped resolving my issue
https://community.fabric.microsoft.com/t5/Desktop/Create-new-table-using-another-table/m-p/3604179
Anonymous
2 years agoNot applicable
This could be the type of method you are looking for?
Total Number = COUNTROWS('Example')Total Number - MB1 = var totalNumber = [Total Number]
var MB1 = CALCULATE(
[Total Number],
'Example'[Event] = "MB1"
)
RETURN
totalNumber - MB1- ashuaswinireddy2 years agoHelper I
Yes, I am looking this type of logic for multiple events to create burndown chart
- Anonymous2 years agoNot applicable
Hi, ashuaswinireddy
Have you solved your problem? If so, mark the correct answer as a standard answer to help other members find it faster? Thank you very much for your kind cooperation!