AVERAGEIF
Last updated
Was this helpful?
The AVERAGEIF function can be used to return the average value in a list if they meet a certain criterion.
averageif( list, condition)list – The input list of values on which the filter is to be applied
condition – The condition to be evaluated
Returns the average value.
averageif([Sales,Sales1,Sales2],">0.1m")Returns the average of values in Sales, Sales1, and Sales2 if they are greater than 0.1m.

Last updated
Was this helpful?
Was this helpful?