AVERAGEIF function

AVERAGEIF(Array, Condition) AVERAGEIF(Array; Condition)

Array

{ Number }

The array containing the numbers from which an average should be calculated.

Condition

A text string specifying the condition, a number which array elements must be equal to or a formula fragment specifying the condition. Use a text string like ">3"">3" to specify a condition.

If a text string is given, the following operators are supported: <, <=, >, >=, =, ==, <> and !=. "" means "only blank values," "<>" and "!=" mean "only non-blank values."

If a formula fragment is given, it must return a logical value (TRUE or FALSE) specifying whether the element under consideration should be included. To do its work, it has access to the values Element (the array element currently being tested), Index (the numeric position of the array element currently being tested, starting at 1) and Source, the source array.

Returns

Number or { Number }

The average of the array elements that satisfy a condition.

Returns the average (arithmetic mean) of the array elements that satisfy a condition. AVERAGEIF({ 3, 4, 5 }, ">3")AVERAGEIF({ 3; 4; 5 }; ">3") returns 4.5 ((4 + 5) / 2(4 + 5) / 2) and not 4 ((3 + 4 + 5) / 3(3 + 4 + 5) / 3), as only 4 and 5 are greater than 3, as specified by the ">3"">3" parameter.

Use & to reference values that reside elsewhere. This formula only considers those array elements which are greater than the value of Field1:

AVERAGEIF({ 3, 4, 5 }, ">" & Field1)AVERAGEIF({ 3; 4; 5 }; ">" & Field1)

AVERAGEIF can use separate arrays, of equal size, for determining which elements to consider and for determining which numbers to multiply together. This version is described further down. Use AVERAGEIFS to use multiple conditions (or use AVERAGEIF with a formula fragment and &&, described below).

Writing conditions

AVERAGEIF supports the following operators: < (less than), <= (less than or equal to), > (greater than), >= (greater than or equal to), = and == (equality), <> and != (inequality).

If the second parameter is set to "", only blank values are considered. If it is set to "<>" or "!=", all non-blank values are considered.

If the operator is left out, "=" is assumed. As a result, these formulas are equivalent:

AVERAGEIF({ 3, 4, 5 }, "=4")AVERAGEIF({ 3; 4; 5 }; "=4")
AVERAGEIF({ 3, 4, 5 }, "4")AVERAGEIF({ 3; 4; 5 }; "4")
AVERAGEIF({ 3, 4, 5 }, 4)AVERAGEIF({ 3; 4; 5 }; 4)

The language settings of the app are taken into account when parsing numbers that are part of the condition text string, meaning that an app configured to use German should use a decimal comma (",") as a decimal separator and an app configured to use Australian English should use a decimal point ("."). Thousands separators should not be used and negative numbers should use a leading minus sign ("-").

Specifying the condition using a formula fragment

The second parameter can also be a formula fragment. These formulas are equivalent, with the second one using a formula fragment:

AVERAGEIF({ 3, 4, 5 }, ">3")AVERAGEIF({ 3; 4; 5 }; ">3")
AVERAGEIF({ 3, 4, 5 }, Element > 3)AVERAGEIF({ 3; 4; 5 }; Element > 3)

Using a formula fragment gives you access to the full power of the formula language. Consider this formula:

AVERAGEIF({ 3, 4, 5 }, (Element > 3) && ISODD(Element))AVERAGEIF({ 3; 4; 5 }; (Element > 3) && ISODD(Element))

The formula above returns 5, because only array elements are considered which are greater than 3 and are odd numbers, which disqualifies 3 and 4, leaving only 5.

&& means logical "and," || means logical "or" and ! means logical negation.

This formula returns 4 ((3 + 4 + 5) / 3(3 + 4 + 5) / 3), as 3, 4 and 5 are all considered:

AVERAGEIF({ 3, 4, 5 }, (Element > 3) || ISODD(Element))AVERAGEIF({ 3; 4; 5 }; (Element > 3) || ISODD(Element))

3, 4 and 5 are all considered due to the || operator, which causes all array elements to be considered which are either greater than 3 or are odd.

This formula returns 4, as only 4 is both greater than 3 and is "not odd" (even):

AVERAGEIF({ 3, 4, 5 }, (Element > 3) && !ISODD(Element))AVERAGEIF({ 3; 4; 5 }; (Element > 3) && !ISODD(Element))

! in !ISODD(Element)!ISODD(Element) negates the value returned from ISODD, causing TRUE to become FALSE and vice versa.

The formula fragment is run once for every array element to be tested, and is expected to return TRUE if the element should be considered, and FALSE otherwise. To do its work, it has access to the values Element (the array element currently being tested), Index (the numeric position of the array element currently being tested, starting at 1) and Source, the source array.

Using FILTER, AVERAGE and REDUCE instead of AVERAGEIF

The work AVERAGEIF performs can be divided into two parts: filtering out unwanted array elements and then returning the average of the array elements which made the cut. As such, these formulas are equivalent:

AVERAGEIF({ 3, 4, 5 }, ">3")AVERAGEIF({ 3; 4; 5 }; ">3")
AVERAGE(FILTER({ 3, 4, 5 }, Element > 3))AVERAGE(FILTER({ 3; 4; 5 }; Element > 3))

The version using FILTER provides more flexibility, as the final step (calculating the arithmetic mean through AVERAGE) can be replaced by another function (like SUM, which adds the remaining numbers together), independent of the filtering logic.

For even more flexibility, consider replacing SUM with REDUCE. Refer to the example below for more information.

Examples

AVERAGEIF({ 3, 4, 5 }, ">3")AVERAGEIF({ 3; 4; 5 }; ">3")

Returns 4.5 ((4 + 5) / 2(4 + 5) / 2). It does not return 4 ((3 + 4 + 5) / 3(3 + 4 + 5) / 3), as only 4 and 5 are greater than 3, as specified by the ">3"">3" parameter.

AVERAGEIF(Field1:Field10, ">1")AVERAGEIF(Field1:Field10; ">1")

Returns the average of all fields in the Field1:Field10Field1:Field10 range, where only fields whose values are greater than 1 are considered.

AVERAGEIF({ 3, 4, 5 }, ">" & Field1)AVERAGEIF({ 3; 4; 5 }; ">" & Field1)

Determines which of the numbers of the { 3, 4, 5 }{ 3; 4; 5 } array are greater than the value of Field1 and returns the average of those numbers. If Field1.ValueField1,Value is 3, then 4.5 is returned ((4 + 5) / 2(4 + 5) / 2).

AVERAGEIF({ 3, 4, 5 }, "=4")AVERAGEIF({ 3; 4; 5 }; "=4")

Returns 4, as only 4 in the array { 3, 4, 5 }{ 3; 4; 5 } satisfies the "=4""=4" condition.

AVERAGEIF({ 3, 4, 5 }, "4")AVERAGEIF({ 3; 4; 5 }; "4")

Returns 4, as only 4 in the array { 3, 4, 5 }{ 3; 4; 5 } satisfies the "4""4" condition. Equality is implied when no operator is specified.

AVERAGEIF({ 3, 4, 5 }, 4)AVERAGEIF({ 3; 4; 5 }; 4)

Returns 4, as only 4 in the array { 3, 4, 5 }{ 3; 4; 5 } satisfies the 44 condition. When a plain value is given as the second parameter, equality is implied. If only values equal to another value should be considered, using a plain value instead of a value enclosed in a text string is preferable, as errors can be detected at an earlier stage.

AVERAGEIF({ 1.1, 1.2, 1.3 }, ">1.1")AVERAGEIF({ 1,1; 1,2; 1,3 }; ">1.1")

Returns 1.25 ((1.2 + 1.3) / 2(1,2 + 1,3) / 2). It does not return 1.2 ((1.1 + 1.2 + 1.3) / 3(1,1 + 1,2 + 1,3) / 3), as only 1.2 and 1.3 are greater than 1.1, as specified by the ">1.1"">1.1" parameter. A decimal separator appropriate for the language of the app should be used. If that language is French, for instance, a decimal comma should be used ("1,1" instead of "1.1").

AVERAGEIF({ 3, 4, 5 }, Element > 3)AVERAGEIF({ 3; 4; 5 }; Element > 3)

Returns 4.5 ((4 + 5) / 2(4 + 5) / 2). It does not return 4 ((3 + 4 + 5) / 3(3 + 4 + 5) / 3), as only 4 and 5 are greater than 3, as specified by the Element > 3Element > 3 parameter. This example uses a formula fragment instead of a text string. It is invoked once for every array element considered, and is expected to return TRUE if the value should be considered and FALSE otherwise. To do its work, it has access to the Element value, which is the value under consideration.

AVERAGEIF({ 3, 4, 5 }, (Element > 3) && ISODD(Element))AVERAGEIF({ 3; 4; 5 }; (Element > 3) && ISODD(Element))

Returns 5, as only 5 is both greater than 3 and is an odd number. Formula fragments have access to the full power of the formula language, enabling complex conditions. && means logical "and," || means logical "or" and ! means logical negation.

AVERAGE(FILTER({ 3, 4, 5 }, Element > 3))AVERAGE(FILTER({ 3; 4; 5 }; Element > 3))

Returns 4.5 ((4 + 5) / 2(4 + 5) / 2). It does not return 4 ((3 + 4 + 5) / 3(3 + 4 + 5) / 3), as only 4 and 5 are greater than 3, as specified by the Element > 3Element > 3 parameter. FILTER first removes array elements which are not greater than 3 (specifically, the element 3). Finally, AVERAGE calculates the average of the remaining numbers (4 and 5) and returns it.

REDUCE(FILTER({ 3, 4, 5 }, Element > 3), (A, V) -> A + V, 0, (A, S) -> A / S)REDUCE(FILTER({ 3; 4; 5 }; Element > 3); (A; V) -> A + V; 0; (A; S) -> A / S)

Returns 4.5 ((4 + 5) / 2(4 + 5) / 2). It does not return 4 ((3 + 4 + 5) / 3(3 + 4 + 5) / 3), as only 4 and 5 are greater than 3, as specified by the Element > 3Element > 3 parameter to FILTER. REDUCE is a more flexible alternative to functions like AVERAGE. Refer to its documentation to learn how it works.

AVERAGEIF(ConditionArray, Condition, TargetArray) AVERAGEIF(ConditionArray; Condition; TargetArray)

ConditionArray

{ Number }, { Logical }, { Text } or { Color }

The array containing the values to test. Only the numbers of the second array, targetArray, which correspond to the elements of this array which satisfy the condition, are used in the final calculation. Two elements are said to correspond to each other if they are in the same position in their respective arrays.

Condition

A text string specifying the condition, a number which array elements must be equal to or a formula fragment specifying the condition. Use a text string like ">3"">3" to specify a condition.

If a text string is given, the following operators are supported: < (less than), <= (less than or equal to), > (greater than), >= (greater than or equal to), = (equality, case-insensitive for text), == (equality, case-sensitive for text), <> (inequality, case-insensitive for text) and != (inequality, case-sensitive for text). "" means "only blank values," "<>" and "!=" mean "only non-blank values."

If a formula fragment is given, it must return a logical value (TRUE or FALSE) specifying whether the element under consideration should be included. To do its work, it has access to the values Element (the array element currently being tested), Index (the numeric position of the array element currently being tested, starting at 1) and Source, the first array.

TargetArray

{ Number }

The array containing the numbers from which an average should be calculated. Only numbers corresponding to elements of the first array which satisfy the given condition are considered. Two elements are said to correspond to each other if they are in the same position in their respective arrays.

Returns

Number or { Number }

The average of all array elements which satisfy a condition.

Returns the average (arithmetic mean) of all array elements which satisfy a condition. AVERAGEIF({ 3, 4, 5 }, ">3", { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; ">3"; { 30; 40; 50 }) returns 45 ((40 + 50) / 2(40 + 50) / 2) and not 40 ((30 + 40 + 50) / 3(30 + 40 + 50) / 3), as only 4 and 5 of the first array are greater than 3, as specified by the ">3"">3" parameter.

Use & to reference values that reside elsewhere. This formula only considers those elements of the second array which are greater than the value of Field1:

AVERAGEIF({ 3, 4, 5 }, ">" & Field1, { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; ">" & Field1; { 30; 40; 50 })

AVERAGEIF can use the same array for determining which elements to consider and for determining which numbers to multiply together. This version is described further up. Use AVERAGEIFS to use multiple conditions (or use AVERAGEIF with a formula fragment and &&, described below).

Beyond numbers

The first array does not need to be a number array. This formula returns 35 ((30 + 40) / 2(30 + 40) / 2), as only 30 and 40 correspond to "Eve" in the first array:

AVERAGEIF({ "Eve", "Eve", "Bill" }, "Eve", { 30, 40, 50 })AVERAGEIF({ "Eve"; "Eve"; "Bill" }; "Eve"; { 30; 40; 50 })

Writing conditions

AVERAGEIF supports the following operators: < (less than), <= (less than or equal to), > (greater than), >= (greater than or equal to), = (equality, case-insensitive for text), == (equality, case-sensitive for text), <> (inequality, case-insensitive for text) and != (inequality, case-sensitive for text).

If the second parameter is set to "", only the blank values of the second array are considered. If it is set to "<>" or "!=", all non-blank values are considered.

If the operator is left out, "=" is assumed. As a result, these formulas are equivalent:

AVERAGEIF({ 3, 4, 5 }, "=4", { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; "=4"; { 30; 40; 50 })
AVERAGEIF({ 3, 4, 5 }, "4", { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; "4"; { 30; 40; 50 })
AVERAGEIF({ 3, 4, 5 }, 4, { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; 4; { 30; 40; 50 })

The language settings of the app are taken into account when parsing numbers that are part of the condition text string, meaning that an app configured to use German should use a decimal comma (",") as a decimal separator and an app configured to use Australian English should use a decimal point ("."). Thousands separators should not be used and negative numbers should use a leading minus sign ("-").

Specifying the condition using a formula fragment

The second parameter can also be a formula fragment. These formulas are equivalent, with the second one using a formula fragment:

AVERAGEIF({ 3, 4, 5 }, ">3", { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; ">3"; { 30; 40; 50 })
AVERAGEIF({ 3, 4, 5 }, Element > 3, { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; Element > 3; { 30; 40; 50 })

Using a formula fragment gives you access to the full power of the formula language. Consider this formula:

AVERAGEIF({ 3, 4, 5 }, (Element > 3) && ISODD(Element), { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; (Element > 3) && ISODD(Element); { 30; 40; 50 })

The formula above returns 50, because only array elements are considered which are greater than 3 and are odd numbers, which disqualifies 3 and 4, leaving only 5 (corresponding to 50 in the second array).

&& means logical "and," || means logical "or" and ! means logical negation.

This formula returns 40 ((30 + 40 + 50) / 3(30 + 40 + 50) / 3), as 3, 4 and 5 are all considered:

AVERAGEIF({ 3, 4, 5 }, (Element > 3) || ISODD(Element), { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; (Element > 3) || ISODD(Element); { 30; 40; 50 })

3, 4 and 5 are all considered due to the || operator, which causes all array elements to be considered which are either greater than 3 or are odd (3, 4 and 5 correspond to 30, 40 and 50 in the second array).

This formula returns 40, as only 4 is both greater than 3 and is "not odd" (even):

AVERAGEIF({ 3, 4, 5 }, (Element > 3) && !ISODD(Element), { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; (Element > 3) && !ISODD(Element); { 30; 40; 50 })

! in !ISODD(Element)!ISODD(Element) negates the value returned from ISODD, causing TRUE to become FALSE and vice versa.

The formula fragment is run once for every array element to be tested, and is expected to return TRUE if the element should be considered, and FALSE otherwise. To do its work, it has access to the values Element (the element of the first array currently being tested), Index (the numeric position of the array element currently being tested, starting at 1) and Source, the first array.

Using wildcards in the condition to match text flexibly

When the first array contains text strings, the condition can use special characters to match multiple text strings. This formula returns 55 ((10 + 100) / 2(10 + 100) / 2), because both "car" and "cat" match the wildcard "ca?":

AVERAGEIF({ "car", "cat" }, "ca?", { 10, 100 })AVERAGEIF({ "car"; "cat" }; "ca?"; { 10; 100 })

? matches any character. "ca?" matches not only "car" and "cat", but also "cab", "can" and "cap". However, it does not match "card", because ? matches exactly one character, nor does it match "ca".

* matches no character, a single character, or multiple characters. As such, "ca*" matches everything that "ca?" matches, but also "card", "ca" and "Canada" (matching is case-insensitive).

? and * can be combined in the same pattern. Colo*r ad*s are great? matches both "Color ads are great!" and "Colour adverts are great?".

Sometimes, the special characters ? and * need to be included as-is, and not have special meaning. To achieve that, precede each special character with a tilde ("~"). This formula returns 100, because only "ca*" in the first array matches "ca~*":

AVERAGEIF({ "cat", "ca*" }, "ca~*", { 10, 100 })AVERAGEIF({ "cat"; "ca*" }; "ca~*"; { 10; 100 })

In other words, to search for a verbatim "*" character, write "~*". To search for a verbatim "?" character, write "~?". Finally, to search for a verbatim "~" character, write "~~".

Regular expressions are much more powerful than wildcards, but are also harder to learn. Use REGEXMATCH in a formula fragment to use regular expressions with AVERAGEIF.

This formula returns 10, because only "123" matches the "\d\d\d" regular expression (which only accepts exactly three numbers).

AVERAGEIF({ "123", "ab3" }, REGEXMATCH(Element, "\d\d\d"), { 10, 100 })AVERAGEIF({ "123"; "ab3" }; REGEXMATCH(Element; "\d\d\d"); { 10; 100 })

Refer to the documentation of REGEXMATCH for more information.

Using FILTER, AVERAGE and REDUCE instead of AVERAGEIF

The work AVERAGEIF performs can be divided into two parts: filtering out the unwanted elements from the first array and then returning the average of the elements of the second array which correspond to the ones in the first array which made the cut. As such, these formulas are equivalent:

AVERAGEIF({ 3, 4, 5 }, ">3", { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; ">3"; { 30; 40; 50 })
AVERAGE(FILTER({ 30, 40, 50 }, { 3, 4, 5 } > 3))AVERAGE(FILTER({ 30; 40; 50 }; { 3; 4; 5 } > 3))

The version using FILTER provides more flexibility, as the final step (calculating the arithmetic mean through AVERAGE) can be replaced by another function (like SUM, which adds the remaining numbers together), independent of the filtering logic.

For even more flexibility, consider replacing AVERAGE with REDUCE. Refer to the example below for more information.

Examples

AVERAGEIF({ 3, 4, 5 }, ">3", { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; ">3"; { 30; 40; 50 })

Returns 45 ((40 + 50) / 2(40 + 50) / 2). It does not return 40 ((30 + 40 + 50) / 3(30 + 40 + 50) / 3), as only 4 and 5 of the first array are greater than 3, as specified by the ">3"">3" parameter.

AVERAGEIF(Field1:Field5, ">1", { 11, 22, 33, 44, 55 })AVERAGEIF(Field1:Field5; ">1"; { 11; 22; 33; 44; 55 })

Returns the average of the elements of the { 11, 22, 33, 44, 55 }{ 11; 22; 33; 44; 55 } array, where only elements corresponding to elements in the Field1:Field5Field1:Field5 range greater than 1 are considered.

AVERAGEIF({ "Eve", "Eve", "Bill" }, "Eve", { 30, 40, 50 })AVERAGEIF({ "Eve"; "Eve"; "Bill" }; "Eve"; { 30; 40; 50 })

Returns 35 ((30 + 40) / 2(30 + 40) / 2), as only 30 and 40 correspond to "Eve" in the first array.

AVERAGEIF({ 3, 4, 5 }, ">" & Field1, { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; ">" & Field1; { 30; 40; 50 })

Determines which of the numbers of the { 3, 4, 5 }{ 3; 4; 5 } array are greater than the value of Field1 and returns the average of the corresponding numbers of the { 30, 40, 50 }{ 30; 40; 50 } array. If Field1.ValueField1,Value is 3, then 45 is returned ((40 + 50) / 2(40 + 50) / 2).

AVERAGEIF({ 3, 4, 5 }, "=4", { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; "=4"; { 30; 40; 50 })

Returns 40, which corresponds to 4 in the array { 3, 4, 5 }{ 3; 4; 5 }, which is the only element of that array which satisfies the "=4""=4" condition.

AVERAGEIF({ 3, 4, 5 }, "4", { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; "4"; { 30; 40; 50 })

Returns 40, which corresponds to 4 in the array { 3, 4, 5 }{ 3; 4; 5 }, which is the only element of that array which satisfies the "4""4" condition. Equality is implied when no operator is specified.

AVERAGEIF({ 3, 4, 5 }, 4, { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; 4; { 30; 40; 50 })

Returns 40, which corresponds to 4 in the array { 3, 4, 5 }{ 3; 4; 5 }, which is the only element of that array which satisfies the 44 condition. When a plain value is given as the second parameter, equality is implied. If only values equal to another value should be considered, using a plain value instead of a value enclosed in a text string is preferable, as errors can be detected at an earlier stage.

AVERAGEIF({ 1.1, 1.2, 1.3 }, ">1.1", { 11, 12, 13 })AVERAGEIF({ 1,1; 1,2; 1,3 }; ">1.1"; { 11; 12; 13 })

Returns 12.5 ((12 + 13) / 2(12 + 13) / 2). It does not return 12 ((11 + 12 + 13) / 3(11 + 12 + 13) / 3), as only 1.2 and 1.3 are greater than 1.1, as specified by the ">1.1"">1.1" parameter. A decimal separator appropriate for the language of the app should be used. If that language is French, for instance, a decimal comma should be used ("1,1" instead of "1.1").

AVERAGEIF({ "car", "cat" }, "ca?", { 10, 100 })AVERAGEIF({ "car"; "cat" }; "ca?"; { 10; 100 })

Returns 55 ((10 + 100) / 2(10 + 100) / 2), because both "car" and "cat" match the wildcard "ca?". ? matches exactly one (arbitrary) character.

AVERAGEIF({ "car", "card" }, "ca*", { 10, 100 })AVERAGEIF({ "car"; "card" }; "ca*"; { 10; 100 })

Returns 55 ((10 + 100) / 2(10 + 100) / 2), because both "car" and "card" match the wildcard "ca*". * matches zero, one or several (arbitrary) characters.

AVERAGEIF({ "car", "ca*" }, "ca~*", { 10, 100 })AVERAGEIF({ "car"; "ca*" }; "ca~*"; { 10; 100 })

Returns 100, because only "ca*" matches the wildcard "ca~*". ~ written before any other character matches it verbatim, meaning that * does not have special meaning here.

AVERAGEIF({ 3, 4, 5 }, Element > 3, { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; Element > 3; { 30; 40; 50 })

Returns 45 ((40 + 50) / 2(40 + 50) / 2). It does not return 40 ((30 + 40 + 50) / 3(30 + 40 + 50) / 3), as only 4 and 5 of the first array are greater than 3, as specified by the Element > 3Element > 3 parameter. This example uses a formula fragment instead of a text string. It is invoked once for every array element considered, and is expected to return TRUE if the value should be considered and FALSE otherwise. To do its work, it has access to the Element value, which is the value under consideration.

AVERAGEIF({ 3, 4, 5 }, (Element > 3) && ISODD(Element), { 30, 40, 50 })AVERAGEIF({ 3; 4; 5 }; (Element > 3) && ISODD(Element); { 30; 40; 50 })

Returns 50, as only 5 in the first array is both greater than 3 and is an odd number and it corresponds to 50 in the second array. Formula fragments have access to the full power of the formula language, enabling complex conditions. && means logical "and," || means logical "or" and ! means logical negation.

AVERAGE(FILTER({ 30, 40, 50 }, { 3, 4, 5 } > 3))AVERAGE(FILTER({ 30; 40; 50 }; { 3; 4; 5 } > 3))

Returns 45 ((40 + 50) / 2(40 + 50) / 2). It does not return 40 ((30 + 40 + 50) / 3(30 + 40 + 50) / 3), as only 4 and 5 in the second array are greater than 3. FILTER returns a version of the first array, where elements corresponding to elements of the second array which failed the > 3 test are not present. Finally, AVERAGE calculates the average of the remaining numbers (40 and 50) and returns it.

REDUCE(FILTER({ 30, 40, 50 }, { 3, 4, 5 } > 3), (A, V) -> A + V, 0, (A, S) -> A / S)REDUCE(FILTER({ 30; 40; 50 }; { 3; 4; 5 } > 3); (A; V) -> A + V; 0; (A; S) -> A / S)

Returns 45 ((40 + 50) / 2(40 + 50) / 2). It does not return 40 ((30 + 40 + 50) / 3(30 + 40 + 50) / 3), as only 4 and 5 of the second array are greater than 3. REDUCE is a more flexible alternative to functions like AVERAGE. Refer to its documentation to learn how it works.

AVERAGEIF({ "123", "ab3" }, REGEXMATCH(Element, "\d\d\d"), { 10, 100 })AVERAGEIF({ "123"; "ab3" }; REGEXMATCH(Element; "\d\d\d"); { 10; 100 })

Returns 10, because only "123" matches the "\d\d\d" regular expression (which only accepts exactly three numbers). Refer to the documentation of REGEXMATCH for more information.