Forum Discussion
mmparvez
2 years agoFrequent Visitor
Zero value as average
I have a table Which i want to show as Visualisation Table with zero value as average per product catagory. Expected visualization
- 2 years ago
pls try this
AnalyticPulse
2 years agoSolution Sage
use if condition to achive this.
here is example:
AverageAmount =
IF(
SUM('YourTable'[Amount]) = 0,
AVERAGE('YourTable'[Amount]),
SUM('YourTable'[Amount])
)