Sumproduct + Match + Offset?

Joined
Oct 21, 2021
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I've been trying to use OFFSET formula nested within the ISNUMBER(MATCH) combination to get a dynamic range but can't get it to work. There's probably an easier and more elegant way to achieve what I'm trying to do to be honest but I thought about trying to see if this will work.

First version, without OFFSET, but selected range worked well:

=SUMPRODUCT(ISNUMBER(MATCH(ReturnsDataSheet[Return Date],P8:P37,0))*(ReturnsDataSheet[Project]='Control Check'!A83)*(ReturnsDataSheet[Company]='Control Check'!C83)*(ReturnsDataSheet[Company Type]='Control Check'!$B$78)*(ReturnsDataSheet[Return Type]='Control Check'!$A$78),ReturnsDataSheet[Contribution])

but when I have replaced the range with OFFSET, unfortunately, it stopped.

OFFSET on its own in a cell provides the correct range I'm interested in.

=SUMPRODUCT(ISNUMBER(MATCH(ReturnsDataSheet[Return Date],OFFSET(Quarters_Table[@Column3],0,0,$E$77,1),0))*(ReturnsDataSheet[Project]='Control Check'!A82)*(ReturnsDataSheet[Company]='Control Check'!C82)*(ReturnsDataSheet[Company Type]='Control Check'!$B$78)*(ReturnsDataSheet[Return Type]='Control Check'!$A$78),ReturnsDataSheet[Contribution])

Can OFFSET be used in this way at all?
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
OFFSET on its own in a cell provides the correct range I'm interested in.
Was that cell in the same row as the failing formula? With relative references to a different table things are always going to be messy.

Assuming that OFFSET(Quarters_Table[@Column3],0,0,$E$77,1) should refer to P8:P37 the formula would need to reside in row 8 for it to work. If the formula was in row 3 then it would refer to P3:P32 if it was in row 18 then it would return P18:P42 and so on. If the offset range falls outside of the table range then it will likely result in an error that will subsequently cause ISNUMBER to return FALSE and a zero result.
 
Upvote 0
Solution
I knew it would be something simple that I have missed. Thanks, I've changed Quarters_Table[@Column3] to the first cell in that table and it has worked.
 
Upvote 0

Forum statistics

Threads
1,215,043
Messages
6,122,822
Members
449,096
Latest member
Erald

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