Forum Discussion
Yollies
6 years agoHelper I
Q and A function for Average
I have a column that works out the yirld. I then use Q & A function to get the average for the column
However the average is coming down because of the ZZERO's. How do i ignore zero's?
thanks in afdvance
Hi Yollies ,
You could create a new measure to calculate your average value.
AVG = CALCULATE ( AVERAGE ( 'Table'[YourColumn] ), 'Table'[YourColumn] <> 0 && 'Table'[YourColumn] <> BLANK () )Then you could use a card visual to show it.
1 Reply
- v-eachen-msftCommunity Support
Hi Yollies ,
You could create a new measure to calculate your average value.
AVG = CALCULATE ( AVERAGE ( 'Table'[YourColumn] ), 'Table'[YourColumn] <> 0 && 'Table'[YourColumn] <> BLANK () )Then you could use a card visual to show it.