Forum Discussion
Divide with Filter
Hi guys,
Wondering how I can Divide with a filter - below is a dateset example.
I'd like to divide the sum of B by the sum of C.
Expected result should be 37.5% - what is the best / most efficient approach with DAX?
Thanks in advance!
peterso ,
Try like
divide(calculate(sum(Table[value]),Table[Category]="B"),calculate(sum(Table[value]),Table[Category]="C"))
or
divide(calculate(sum(Table[value]),filter(Table,Table[Category]="B")),calculate(sum(Table[value]),filter(Table,Table[Category]="C")))
1 Reply
- amitchandakSuper User
peterso ,
Try like
divide(calculate(sum(Table[value]),Table[Category]="B"),calculate(sum(Table[value]),Table[Category]="C"))
or
divide(calculate(sum(Table[value]),filter(Table,Table[Category]="B")),calculate(sum(Table[value]),filter(Table,Table[Category]="C")))