Changing a Filter Formula to VBA due to different Office Systems

Brentsa

Board Regular
Joined
Oct 3, 2013
Messages
118
Office Version
  1. 365
Platform
  1. Windows
Our work has Office 365 but due to needing IT Admin password we cannot update Office 365. I have the following Formula:

=FILTER('Difference Report (Historic)'!B7:M10000,(ROW('Difference Report (Historic)'!A7:A10000)-ROW('Difference Report (Historic)'!A6)+1)<=XMATCH("Inner Seal",'Difference Report (Historic)'!A7:A10000,0))

But as Filter does not work on a number of PC's is there a different formula to use or a VBA code I can use?
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
You can use SUMPRODUCT.
Thanks but can you explain more I have never used this before. How I will I change =FILTER('Difference Report (Historic)'!B7:M10000,(ROW('Difference Report (Historic)'!A7:A10000)-ROW('Difference Report (Historic)'!A6)+1)<=XMATCH("Inner Seal",'Difference Report (Historic)'!A7:A10000,0)) to a Sumproduct Formula?
 
Upvote 0
If I'am not wrong you want to filter the rows lower then the row with "Inner Seal"
 
Upvote 0
If I'am not wrong you want to filter the rows lower then the row with "Inner Seal"
The data that I'm working with is separated by the Row that has "Inner Seal" In this formula I'm looking for all rows that comes before "Inner Seals".
I do have another Formula that looks for all rows after "Inner Seals"

I want the results to appear in column aa3 of the same sheet "Difference Report (Historic)"
 
Upvote 0
Excel Formula:
=IFERROR(IF(ROW($AA3)-2<=(SUMPRODUCT(--(ROW($A$7:$A$10000)-ROW($A$6)+1<=MATCH("inner seal",$A$7:$A$10000,0)))),INDEX($B$6:$M$10000,SUMPRODUCT((INDEX((ROW($A$7:$A$1000)-ROW($A$6)+1<=MATCH("inner seal",$A$7:$A$10000,0))*(ROW($A$7:$A$10000)-ROW($A$6)+1),ROW($AA3)-2))),COLUMN()-26),""),"")

Put this formula in AA3 and copy the cell to AK10000.
 
Upvote 0
Solution

Forum statistics

Threads
1,215,059
Messages
6,122,918
Members
449,094
Latest member
teemeren

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