Forum Discussion
Anonymous
10 years agoNot applicable
Average excluding zero's
How would I write a formula that gives me the average sales but excludes any instances when the sales are zero.
- Anonymous10 years ago
Assuming this is a simple average of rows of sale data, and not an average of another measure that aggregates sales in some other way...
Avg Sales= CALCULATE( AVERAGE(TableName[SaleAmount]), FILTER(TableName, TableName[SaleAmount] <> 0 ))
Anonymous
10 years agoNot applicable
Assuming this is a simple average of rows of sale data, and not an average of another measure that aggregates sales in some other way...
Avg Sales= CALCULATE( AVERAGE(TableName[SaleAmount]), FILTER(TableName, TableName[SaleAmount] <> 0 ))
mluanacruz
3 years agoHelper I
Hi Anonymous,
I am looking for something very similar, but I want the average of the "Ratio_Measure" excluding the highest and lowest number. Do you think you can help me?
Here is a sample of my data on excel as well as the Power BI dashboard with my measures
Here!!