Filter Function Problem Handling Negative Numbers

Andrew100

New Member
Joined
Nov 24, 2023
Messages
4
Office Version
  1. 2021
Platform
  1. Windows
Looking for some help. I have a data table showing sales people with the dollar value they sold last month. Yes, some salespeople have negative values because of returned product. I wrote a formula using SORT and FILTER to try and create a list of the sales people, rank ordered by the sales value, but where we excluded salespeople with ZERO dollars in the period. The formula -- which you can see in the formula bar in the below image -- *almost* works perfectly well. HOWEVER, the sorted list the formula creates weirdly leaves out some of the sales people with large, negative values. I highlighted in yellow the salespeople whose names didn't get captured in the list the formula creates. The list includes most of the salespeople with negative values, not not all. For some reason, it is excluding certain negative values. I cannot for the life of me figure out why this formula doesn't return a sorted list of ALL of the salespeople (excluding zero dollars people) including ALL of the ones with negative numbers. Can someone possibly solve this problem for me?
 

Attachments

  • Excel Sort and Filter -- Large Negative Numbers Not Showing Up.png
    Excel Sort and Filter -- Large Negative Numbers Not Showing Up.png
    66.8 KB · Views: 16

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.
Hi & welcome to MrExcel.
You cannot filter on a sorted range like that, how about
Excel Formula:
=TAKE(SORT(FILTER(Q78:T120,T78:T120<>0),4,-1),,1)
 
Upvote 0
Hi & welcome to MrExcel.
You cannot filter on a sorted range like that, how about
Excel Formula:
=TAKE(SORT(FILTER(Q78:T120,T78:T120<>0),4,-1),,1)
First, thanks for the quick reply. I tried your formula. It returns a #Name? error. I can confirm that the sort and filter portions work. It will return an array, sorted by value and with the ZERO dollar salespeople excluded, but at the moment it returns all four columns when I only want the first column of names returned. When I try the TAKE -- to select only the first column -- it generates that #Name? error. I feel like we're close, though. Any further thoughts? (thank you so much)
Excel.png
 
Upvote 0
My fault, I didn't look at your profile & 2021 doesn't have the TAKE function. Try
Excel Formula:
=LET(s,SORT(FILTER(Q78:T120,T78:T120<>0),4,-1),INDEX(s,SEQUENCE(ROWS(s)),1))
 
Upvote 0
First, thanks for the quick reply. I tried your formula. It returns a #Name? error. I can confirm that the sort and filter portions work. It will return an array, sorted by value and with the ZERO dollar salespeople excluded, but at the moment it returns all four columns when I only want the first column of names returned. When I try the TAKE -- to select only the first column -- it generates that #Name? error. I feel like we're close, though. Any further thoughts? (thank you so much)View attachment 102429
I have Excel 2021. I think the Take function only works in Microsoft 365. Are there any downsides to trying to change my subscription to 365?
 
Upvote 0
IMO their are no downsides, but 2021 is not a subscription so you have already bought it.
 
Upvote 0
My fault, I didn't look at your profile & 2021 doesn't have the TAKE function. Try
Excel Formula:
=LET(s,SORT(FILTER(Q78:T120,T78:T120<>0),4,-1),INDEX(s,SEQUENCE(ROWS(s)),1))
Fantastic. You solved the problem. I am going to go familiarize myself with Let and Sequence. Thank you so much for your help today.
 
Upvote 0
Welcome to the MrExcel board!

Here are a couple of other options
Excel Formula:
=FILTER(SORTBY(Q78:Q120,T78:T120,-1),SORT(T78:T120,,-1)<>0)

The following one could be preferable though. Your data appears to be in a formal Excel table so this one does not require you to use row numbers and will automatically expand/contract the relevant ranges if your table rows grow or shrink. Check your table name of course.
Excel Formula:
=LET(s,SORT(Table1,4,-1),INDEX(FILTER(s,INDEX(s,0,4)<>0),0,1))
 
Upvote 0

Forum statistics

Threads
1,215,068
Messages
6,122,950
Members
449,095
Latest member
nmaske

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