ANSWERS: 1
-
Let's say that your range of values is in cells A1:A25, then: =MATCH( MIN( A1:A25), A1:A25, 0) Now, if your range is in a row that doesn't start at 1, you need to account for that by adding the right number of rows to the MATCH value. So if your range of values is A26:A50, then: =MATCH( MIN( A26:A50), A26:A50, 0) + ROWS( $A$1:A26) - 1 I used that formula in case your range of values moves. As you add or delete rows between A1:A26, the formula also changes accordingly.
Copyright 2023, Wired Ivy, LLC

by 