Forum Discussion
Asa94
5 years agoHelper I
Matrix Visualization of a Calculated Column versus a Measure
Hi all, I hope you are well, I am trying to do a matrix visualization based of values that are in a calculated column. The values in the calculated column are correct. However, when I use the...
- 5 years ago
Asa94 , Try a measure like
calculate(average(inv[order]), filter(allselected(inv), inv[dealercode] =max( inv[dealercode]) && inv[monthnum] = max(inv[monthnum]) && inv[weeknum] = max(inv[weeknum])))
amitchandak
5 years agoSuper User
Asa94 , Try a measure like
calculate(average(inv[order]), filter(allselected(inv), inv[dealercode] =max( inv[dealercode]) && inv[monthnum] = max(inv[monthnum]) && inv[weeknum] = max(inv[weeknum])))
Asa94
5 years agoHelper I
amitchandak , thank you so much! 🙂
That measure gave me the same results as the calculated measure. Appreciate it so much