The AVERAGEIF function returns the average of values in a list that meet a specified condition.
AVERAGEIF( list, condition)
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.
