sumif question

iceeagle

New Member
Joined
May 16, 2011
Messages
6
I am trying to add cells over a number of cols based on infromation in the first col a
i.e

col a col b col c col d
printer 16 17.5 23
printer 12 13 5
gluer 30 12 25
stripper 19 13 14
printer 12 14 6
gluer 32 18 15

I have tried sumif but only get a total for col b . I need to get the totals for printer/gluer/stripper over cols b to col d. Any help would be really appreciated.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hi

Have you tried a pivot table? It would give you summaries of each column for each title.
 
Upvote 0
I am trying to add cells over a number of cols based on infromation in the first col a
i.e

col a col b col c col d
printer 16 17.5 23
printer 12 13 5
gluer 30 12 25
stripper 19 13 14
printer 12 14 6
gluer 32 18 15

I have tried sumif but only get a total for col b . I need to get the totals for printer/gluer/stripper over cols b to col d. Any help would be really appreciated.
Also...

Control+shift+enter, not just enter:

=SUM(IF($A$2:$A$7=F2,$B$2:$D$7))

where F2 houses a condition like printer.
 
Upvote 0
I am trying to add cells over a number of cols based on infromation in the first col a
i.e

col a col b col c col d
printer 16 17.5 23
printer 12 13 5
gluer 30 12 25
stripper 19 13 14
printer 12 14 6
gluer 32 18 15

I have tried sumif but only get a total for col b . I need to get the totals for printer/gluer/stripper over cols b to col d. Any help would be really appreciated.
Try this...

Book1
ABCD
2printer1617.523
3printer12135
4gluer301225
5stripper191314
6printer12146
7gluer321815
8____
9printer118.5__
Sheet2

Formula entered in B9:

=SUMPRODUCT((A2:A7=A9)*B2:D7)
 
Upvote 0

Forum statistics

Threads
1,224,566
Messages
6,179,550
Members
452,927
Latest member
rows and columns

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