Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel - MIN problem

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
0
0
I have a cell set up to select the MIN result of three cells and display the heading of the column containing the lowest figure.

=IF(MIN(B17:D17)=B17,B6, IF(MIN(B17:D17)=C17,C6,IF(MIN(B17:D17)=D17,D6)))

My problem is how to display all the results when more than one cell contains the smallest figure.

Please can anyone advise.

With thanks,

Maureen
 
Try
=IF(MIN(B17:D17)=B17,B6,"")&IF(MIN(B17:D17)=C17,C6,"")&IF(MIN(B17:D17)=D17,D6,"")
It'll work!!


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top