Forum Discussion
aslan
Helper I
9 years agoMatrix Conditional Formatting
I want to give red color background if total value is greater than 10. And if less than 10 is should be green. But there is no option. Do you know any way?
Anonymous
8 years agoNot applicable
Hi there,
how do I return zero(0) when the field value is empty using the following DAX function (Divide).
Avg. Sales = Divide([total sales] , [total transactions])
Thank you,
Imran
- anandav8 years ago
Skilled Sharer
Anonymous,
Try:
Avg. Sales = Divide([total sales] , [total transactions], 0)
- Anonymous8 years agoNot applicable
Thank you this actually works.