Forum Discussion
Average Calculation
- 1 year ago
Hi cghanta
Can you please try the below DAX.
CALCULATE(
AVERAGE(UPS[Age for Avg]),
ALL(UPS[Location]),
UPS[Age for Avg] <> 0
)If this answers your question, kindly mark it as the solution.
- 1 year ago
Both the solutions from xifeng_L and mdaatifraza5556 worked, Thank you both.
I am not sure how to select both the replies as accepted solution
Hi cghanta
Can you please try the below DAX.
CALCULATE(
AVERAGE(UPS[Age for Avg]),
ALL(UPS[Location]),
UPS[Age for Avg] <> 0
)
If this answers your question, kindly mark it as the solution.
Hi mdaatifraza5556,
I have 2 columns on a the table UPS as follows
| Location | 1stServiceAge | 2ndServiceAge |
| town1 | 3 | 0 |
| town2 | 5 | 2 |
| town3 | 6 | 0 |
| town4 | 0 | 0 |
| town5 | 2 | 1 |
How can I calculate (measure) the average age of both columns, ignoring 0's and slicer. For the above the answer should be 19/6 = 3.17, if all zeros, give 0
Thank you in advance