Sum Sheets

brooklyn2007

Board Regular
Joined
Nov 20, 2010
Messages
143
Hello. I have many sheets (each sheet representing a month) in my workbook with a list of client names and values next to each name. The names of clients are in different order per each sheet. Anyway the clients are the same per each sheet. I need to find a formula to sum of the values per each client. I have tried SUMIF by pressing SHIFT and holding it down to select the entire sheets and after that I have selected the range and criteria and so on, but it won't work. Please help :confused:
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Hello. I have many sheets (each sheet representing a month) in my workbook with a list of client names and values next to each name. The names of clients are in different order per each sheet. Anyway the clients are the same per each sheet. I need to find a formula to sum of the values per each client. I have tried SUMIF by pressing SHIFT and holding it down to select the entire sheets and after that I have selected the range and criteria and so on, but it won't work. Please help :confused:

Create a range housing the names of the relevant sheets. Name this range as SheetList.

Let A2:A100 house clients in every sheet and B2:B100 the corresponding values...

The destination sheet...

E2 houses a name of interest.

F2:

=SUMPRODUCT(SUMIF(INDIRECT("'"&SheetList&"'!A2:A100"),E2,INDIRECT("'"&SheetList&"'!B2:B100")))
 
Upvote 0
Create a range housing the names of the relevant sheets. Name this range as SheetList.

Let A2:A100 house clients in every sheet and B2:B100 the corresponding values...

The destination sheet...

E2 houses a name of interest.

F2:

=SUMPRODUCT(SUMIF(INDIRECT("'"&SheetList&"'!A2:A100"),E2,INDIRECT("'"&SheetList&"'!B2:B100")))

Nope

Excel Workbook
ABCDEF
1
2
3
4
5
6
7john#REF!
8jim
9ken
10
11
12
Sheet1


Excel Workbook
ABCDEF
1
2
3
4
5
6
7
8john23
9jim41
10ken26
11
12
13
14
Sheet2
 
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,738
Members
452,940
Latest member
Lawrenceiow

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