MIN with a possible LOOKUP

Deb6508

Board Regular
Joined
Oct 25, 2004
Messages
131
Hi All,
What I have is a spreadsheet that lists various teams in column A, in column B lists the sum of columns C&D, column C lists the number of correct reviews, column D lists the number of erroneous reviews and column E gives me the percentage of accuracy of each specific row.
What I need is at the bottom of all of the team info is a cell that will give me the cell with the lowest accuracy percentage and I need this for the bottom three teams. The big problem is I have to make sure that there is an amount higher than 0 in column B to ensure I don't include my #DIV/0! teams that haven't had any reviews yet.

Can anyone help me out with this? I know how to do a simple MIN equation but when I have to ensure another cell has a calculation and to do the bottom 3 I am lost. :(

Thanks to any one that can point me in the right direction!!!

Deb
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
I posted this late yesterday but unfortunately I didn't have any luck. I'm hoping by reposting today I may get lucky and someone will have a solution.

Thanks!!!
 
Upvote 0
Can you please provide some sample data, along with your desired outcome?
 
Upvote 0
A B C D E
B5001 0 0 0 #DIV/0!
B5002 15 10 5 66.67%
B5003 15 13 2 86.67%



Column A is the Team name in numerical order.
Column B is the total amount of reviews (by adding columns C & D)
Column C is the correct amount of reviews.
Column D is the incorrect amount of reviews.
Column E is the Percentage of accuracy for the Team.

I know how to do a basic MIN up column E to give me the lowest accuracy rate, but some how I need to either ignore the #DIV/0! or make sure there is a number higher than 0 in column B. I also need to show the 3 lowest accuracy percentages on the following cells.
If anyone could help me with that I would be very grateful!!!! I have searched through the history on here for different MIN calculations and have tried to convert a couple l thought would work but haven't had any luck so far.

Thank you so much for any help you can send my way!!!

Deb
 
Upvote 0
Ideally, fix the error at the source by eliminating the Div/0 errors.

Try replacing those formulas with:

=IF(B2=0,"",C2/B2)

Then you can use the MIN function on column E without having to worry about errors.
 
Upvote 0
Thank you so much MrKowz it works like a charm. If MIN gives me the lowest score what would I have to add to the MIN calculation to get the next to lowest score? Would I add a +1 somewhere possibly?


Deb
 
Upvote 0
You'll want to use the SMALL function for that instead.

=SMALL(E1:E100,1) - Minimum value
=SMALL(E1:E100,2) - Second smallest value
=SMALL(E1:E100,3) - Third smallest value

etc...
 
Upvote 0

Forum statistics

Threads
1,224,595
Messages
6,179,798
Members
452,943
Latest member
Newbie4296

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top