I need to be able to look up the highest value in one cell and the lowest number in another cell from a column of information. For example:
[INDENT]Part[INDENT]Reading[INDENT]A[INDENT]100[INDENT]A[INDENT]105[INDENT]A[INDENT]110[INDENT]B[INDENT]90[INDENT]B[INDENT]100[INDENT]B[INDENT]105
For Part A, I would like one cell to populate 100 for the lowest value and another cell to populate with 110 for the highest value.
I assume I can use the MIN and MAX formula, and tried the formula below, but it does not work when there are multiple entries of the same Part #. Any suggestions?
The formula I tried to use was:
=INDEX(A1:A6,MATCH(MIN($B1:$B6),$B1:$B6,0))
Bookmarks