Author: Oscar Cronquist Article last updated on May 05, 2022

The SUMX2PY2 function calculates the sum of the sum of squares of corresponding values in two arrays.

The sum of the sum of squares is a common procedure in many statistical calculations.

Formula in cell F3:

=SUMX2MY2(B3:B5, D3:D5)

4^2 + 3^2 + 4^2 = 41

2^2 + 3^2 + 4^2 = 29

41 + 29 = 70

Excel Function Syntax

SUMX2MY2(array_x, array_y)

Arguments

array_x Required. The first array or range of values.
array_y Required. The second array or range of values.