Forum Discussion
Anonymous
5 years agoNot applicable
Divide function with rows and filter total value
Hi, Kindly help me Here! I want below condition to enable in DAX I want Divide function where Numerator needs to be a visible value of each Rows and Denominator needs to be sum of all Rows w...
- 5 years ago
Anonymous , Try if, a measure like this can help
divide(sum(Table[Value]), calculate(sum(Table[Value]), allselected(Table)))
amitchandak
5 years agoSuper User
Anonymous , Try if, a measure like this can help
divide(sum(Table[Value]), calculate(sum(Table[Value]), allselected(Table)))
- Anonymous5 years agoNot applicable
Thanks a lot, This works