Filter Alternate in Excel 2016

deepakch

New Member
Joined
Nov 13, 2024
Messages
1
Office Version
  1. 2016
I have a sheet which has FILTER Function which filters the data based on condition and runs fine on Office 365 BUT it needs to run on Excel 2016.

=FILTER(Sheet!A:A,Sheet!BD:BD="non-BDO")

How can i get it converted so that it returns an array to function.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
See below. You will need to add the relevant sheet reference when the formula is on another sheet.
Note that because it is not a dynamic array like FILTER, you need to copy the formula down to each row. For that reason it would be a good idea to limit the data extents in the formula (i.e. use BD1:BD?? rather than BD:BD).

Book1
ABCDBCBD
1AAnon-BDO
2255x
3CNonex
44Nonex
555Nonenon-BDO
Sheet
Cell Formulas
RangeFormula
C1:C5C1=IFERROR(INDEX(A:A,AGGREGATE(15,6,ROW($A$1:$A$5)/($BD$1:$BD$5="non-BDO"),ROWS(A$1:A1))),"None")
 
Upvote 0

Forum statistics

Threads
1,223,629
Messages
6,173,446
Members
452,514
Latest member
cjkelly15

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