Sumproduct with skip column

moka123

New Member
Joined
Oct 10, 2017
Messages
2
Hi

I need help to do sumproduct with skip column :

cell b2 =SUMPRODUCT(('Blade Ring'!$A$4:$A$101="gbr")*('Blade Ring'!D$4:D$101=$A2)*'Blade Ring'!E$4:E$101)
and cell c2 should become =SUMPRODUCT(('Blade Ring'!$A$4:$A$101="gbr")*('Blade Ring'!G$4:G$101=$A2)*'Blade Ring'!H$4:H$101)

now, when i drag from b2 to c2 it become =SUMPRODUCT(('Blade Ring'!$A$4:$A$101="gbr")*('Blade Ring'!E$4:E$101=$A2)*'Blade Ring'!F$4:F$101)

Can anyone help with skip 2 column?

Cheers
Elang
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Welcome to Mr Excel

Try

B2 copied across
=SUMPRODUCT(('Blade Ring'!$A$4:$A$101="gbr")*(INDEX('Blade Ring'!$D$4:$AZ$101,0,3*COLUMNS($B2:B2)-2)=$A2)*INDEX('Blade Ring'!$E$4:$AZ$101,0,3*COLUMNS($B2:B2)-2))

Hope this helps

M.
 
Upvote 0
In B2 enter and copy across:

=SUMPRODUCT(('Blade Ring'!$A$4:$A$101="gbr")*(INDEX('Blade Ring'!$D$4:$S$101,0,3*(COLUMNS($B$2:B2)-1)+1)=$A2)*(INDEX('Blade Ring'!$E$4:$T$101,0,3*(COLUMNS($B$2:B2)-1)+1)))
 
Upvote 0

Forum statistics

Threads
1,224,813
Messages
6,181,118
Members
453,021
Latest member
Justyna P

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