Absolute Minimum Value

  • Thread starter Thread starter pasekm
  • Start date Start date
P

pasekm

Is there a simple formula for finding the Absolute minimum value in
selection of numbers. Absolute meaning not matched
 
Without some kind of example, I can only guess.

Here's one possible option:
This formula returns the smallest single-occurrence, non-blank value i
the range A1:A15

B1: =MIN(IF(COUNTIF(A1:A15,A1:A15)=1,A1:A15))
Note: Commit that array formula by holding down the [Ctrl][Shift] key
and press [Enter].

Example:
A1: 1
A2: 1
A3: (blank)
A4: (blank)
A5: 2
A6: 3
A7: 4
A8: 5
A9: 6
A10: 7
A11: (blank)
A12: 8
A13: 9
A14: 10
A15: 12

B1: returns 2

Is that what you're looking for?

Regards,
Ro
 
Thank You This has been driving me nuts over the last couple of Days.
I will plug it in and see how it works
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top