How do I create a formula to tell if A2:A25 contains a negative va

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

I want to know how to write a simple (please, not VBA) formula to let me know
if a range contains a negative value, i.e., IF(A2:A25) contains a value less
than zero, "negative in list","no negative in list"))
 
=IF(MIN(A2:A25)<0,"negative in list", "no negative in list")
Interestingly enough, the below works as well:
=IF(MIN(A2:A25),"negative in list", "no negative in list")

In the future, if you don't want VBA help then see the
microsoft.public.excel.functions forum ;-)
 
Back
Top