Filtering out top & bottom 2.5% in a list

P

PClantonBailey

The AutoFilter will not allow me to enter a non-integer (2.5) in the percent
field. I need to filter a list to show all except the top and bottom 2.5%.
I've been looking for over an hour and can't find anything that remotely
addresses this issue. Can anyone help?? (My boss is waiting :cool: )
--
PClantonBailey

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...dg=microsoft.public.excel.worksheet.functions
 
M

Max

Filter on a helper col. Assuming scores/marks are listed within D2:D200,
place in say E2:
=IF(D2="","",IF(OR(PERCENTRANK($D$2:$D$200,D2)<=2.5%,PERCENTRANK($D$2:$D$200,D2)>=97.5%),"","Y"))
Copy E2 down to E200, then apply autofilter on E1, filter out: "Y". The
filtered rows will be your required list, viz. all except the top and bottom
2.5%.
 
Top