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 need:
A1 = 5; B1 = 8
A9 = 3; B9 = 7
and something like MINVERSE(A1:B1,A9:B9)
However, this does not seem to work, but if I were to enter MINVERSE({5,8;3,7}), it does work. So now, I am trying to figure out how to use the INDIRECT formula to pull in the cells from the different locations but to calculate the values inside the MINVERSE formula. I have tried MINVERSE(INDIRECT("{5,8;3,7})")), but this just gives me a #REF! error.
My ultimate goal is to pull the formulas that are being used to calculate the numbers above into the INDIRECT formula, so that I have something like:
MINVERSE(INDIRECT("{"&formula&","&formula&";"&formula&","&formula&"}"))
Any thoughts on how I can get these numbers (or formulas) into the INDIRECT formula and get MINVERSE to work?
Thanks!
Instead of having:
A1 = 5; B1 = 8
A2 = 3; B2 = 7
and MINVERSE(A1:B2)
I need:
A1 = 5; B1 = 8
A9 = 3; B9 = 7
and something like MINVERSE(A1:B1,A9:B9)
However, this does not seem to work, but if I were to enter MINVERSE({5,8;3,7}), it does work. So now, I am trying to figure out how to use the INDIRECT formula to pull in the cells from the different locations but to calculate the values inside the MINVERSE formula. I have tried MINVERSE(INDIRECT("{5,8;3,7})")), but this just gives me a #REF! error.
My ultimate goal is to pull the formulas that are being used to calculate the numbers above into the INDIRECT formula, so that I have something like:
MINVERSE(INDIRECT("{"&formula&","&formula&";"&formula&","&formula&"}"))
Any thoughts on how I can get these numbers (or formulas) into the INDIRECT formula and get MINVERSE to work?
Thanks!