English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Hi all,

I have the following issue and I was wondering if someone out there could help me on this.

Imagine that you have an Excel spreadsheet that has 19 tabs (sheet1, sheet2, etc right through to 19) and then one final tab named summary.
Sheet1 - 19 containes mobile phone data with column a stating the type of call e.g. national, premium rate, international, etc and column b the cost.

In the summary section I want to sum up these headings from Sheet1 - 19, however there is a slight issue in that if I want to sum up the totals for International, there are various headers for this i.e. International - Zone 1, International - Zone 2 etc up to zone 10. In the summary section all I want is to name this part "International Calls".
I guess I need to combine a 'sumif' statement with a 'left' but having not much luck with this.
Is there any way this could be done using a simple formula?

Your help is very much appreicated.

2007-06-24 21:29:27 · 7 answers · asked by No1DiamondGeezer 1 in Computers & Internet Programming & Design

7 answers

Little known, but very powerful feature in Sumif is the ability to use a wildcard eg...

I have had to split this formula onto four lines but you don't type it that way:

=SUMIF(
$A$2:$A$4,
"International*",
B2:B4)

the * means anything starting with * is a match.

I think that should solve your problem for you.

2007-06-25 21:57:36 · answer #1 · answered by Alex Andronov 1 · 0 0

I assume that if I call international zone1 there will be a charge in zone 1 only. If I call zone8 there will be a charge in zone8 only.
So don't try to be clever. Leave that to Excel.
As long as the columns for the different zones are together just sum all the values.
=sum(sheet1!A1:C4) or whatever you want to total.
That is all you need.

2007-06-24 21:41:15 · answer #2 · answered by AnalProgrammer 7 · 0 0

You could use a simple one like this but it could get long...
Sum(sheet1!b3+sheet2!b5+sheet3!c4) etc.. The easiest way to do it would be to sum all the columns in your tabbed sheets then reference those cells. Just make sure you use the ! after the sheet name.

2007-06-24 21:40:21 · answer #3 · answered by uphill climb 3 · 0 0

Case 1 (values in different columns in each sheet):
simply you can add the values by using + sign & adding the values from each column by going to each sheet

Case 2 (values in single column)
mark the whole area of data values & use Subtotals menu option by going to Data -> Subtotals -> [define the column to group & use the sum function]

2007-06-24 22:15:23 · answer #4 · answered by SmartPlayer 2 · 0 0

I have a list of data in different cells, i.e."items" and would like the lower most to be a compilation of "total items" of the compiled from the individual "items" listed above. How do I do this??

2016-05-19 22:04:15 · answer #5 · answered by beckie 3 · 0 0

Try looking at http://www.mrexcel.com good resource and forum.

Hope this helps.

Thanks
David

http://www.shreddershop.com
Is your life in shreds?

2007-06-24 22:35:12 · answer #6 · answered by David 1 · 0 0

just use the help in excel

2007-06-24 21:43:07 · answer #7 · answered by Anonymous · 0 0

fedest.com, questions and answers