I need to find a minimum value in a short list of numbers, then use that number, and the one to its left, in a complex scientific calculation. For example
J K
0.30 1.17
0.35 1.14
0.40 6.25
2.50 1.20
Assume these values are in cells J17:J20 and K17:K20.
I would find the minimum value of 3.0, then in a fairly complex calculation, use both 3.0 and its associated value 1.8.
I've tried the CELL INDEX and MATCH functions without much success. The calculation is moderately complex with sums and squared terms, so I just end up with a hideously long statement that always gives me an error.
I can get the cell address of the minimum in K18 to display in a cell as follows:
=(CELL("address",INDEX($K$17:$K$20,MATCH(MIN($K$17:$K$20),$K$17:$K$20,0))))
The equation I need to solve, using the minimum found in the K column, with its associated J value in the same row, would be = (k+1/k)^2 * (j/j-1)^2 where k and j are the values found in the cell addresses.
I know this is not too hard for you experienced users, but it is giving me problems. I have been trying to settle to just find the cell address of the minimum, which I can do now (cell K18), then display the value of the cell to its left, then use them in the final calculation. However, I can't seem to use just the displayed cell address of K18 in any calculation, so this divide and conquer approach hasn't worked.
I needed to get this done to complete a project and deadline, and it is holding me up. Sorry for my stupidity on this, but any help would be appreciated.
Bookmarks