I am trying to use MINVERSE (and then MMULT) to solve a system of equations, but I am having difficulty because the array I need to use in the MINVERSE function are cells that are not next to each other, for example:
Instead of having:
A1 = 5; B1 = 8
A2 = 3; B2 = 7
and MINVERSE(A1:B2)
I...