Returns the matrix determinant of an array.
Esta función funciona igual en Google Sheets que en Excel: misma sintaxis y mismos argumentos.
MDETERM(array)The MDETERM function calculates the determinant of a matrix provided as an array. The array must be a square matrix with an equal number of rows and columns, otherwise, it returns the #VALUE! error.
=MDETERM({1,2;3,4})Resultado: -2
Calculates the determinant of a 2x2 matrix: (1*4) - (2*3) = -2.
This error occurs if the array is not square or contains non-numeric cells.