AVERAGEIF
Syntax
AVERAGEIF( list, condition)Arguments
Return value
Example
AVERAGEIF([Sales,Sales1,Sales2],">0.1m")
Last updated
Was this helpful?
The AVERAGEIF function returns the average of values in a list that meet a specified condition.
AVERAGEIF( list, condition)list: The list of values to evaluate.
condition: The condition used to filter the values.
Returns the average of the values that satisfy the given condition.
AVERAGEIF([Sales,Sales1,Sales2],">0.1m")Returns the average of Sales, Sales1, and Sales2 column values when they are greater than 0.1 million.

Last updated
Was this helpful?
Was this helpful?