Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default sum of cells in different rows & columns & criteria

Hi,
What formula is needed in G3, H3 & I3 to create the combined totals of row 2
& 3?
Columns B, D & F identify the numbers in A, C & E.
Finished spreadsheet will have 7 number colums with corresponding identifer
colums & 5 different identifers to total. Excel 2003.
Thanks for any help.

a b c d e f g h i
1 Totals: R S V
2 1 R 1 S 1 V
3 1 V .5 R .5 S 1.5 1.5 2

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default sum of cells in different rows & columns & criteria

One way is via SUMIF
In G1:I1 are the identifiers: R, S, V
In G3: =SUMIF($B:$B,G1,$A:$A)+SUMIF($D:$D,G1,$C:$C)
Copy G3 across to I3
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:23,000 Files:370 Subscribers:66
xdemechanik
---
"Question, Mark" wrote:
What formula is needed in G3, H3 & I3 to create the combined totals of row 2
& 3?
Columns B, D & F identify the numbers in A, C & E.
Finished spreadsheet will have 7 number colums with corresponding identifer
colums & 5 different identifers to total. Excel 2003.
Thanks for any help.

a b c d e f g h i
1 Totals: R S V
2 1 R 1 S 1 V
3 1 V .5 R .5 S 1.5 1.5 2

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default sum of cells in different rows & columns & criteria

Errata, missed cols E n F earlier. Line:
In G3: =SUMIF($B:$B,G1,$A:$A)+SUMIF($D:$D,G1,$C:$C)


should read:

In G3:
=SUMIF($B:$B,G1,$A:$A)+SUMIF($D:$D,G1,$C:$C)+SUMIF ($F:$F,G1,$E:$E)
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:23,000 Files:370 Subscribers:66
xdemechanik
---
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default sum of cells in different rows & columns & criteria

Try this:

=SUMIF($B2:$F3,G1,$A2:$E3)

Copy across

--
Biff
Microsoft Excel MVP


"Max" wrote in message
...
Errata, missed cols E n F earlier. Line:
In G3: =SUMIF($B:$B,G1,$A:$A)+SUMIF($D:$D,G1,$C:$C)


should read:

In G3:
=SUMIF($B:$B,G1,$A:$A)+SUMIF($D:$D,G1,$C:$C)+SUMIF ($F:$F,G1,$E:$E)
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:23,000 Files:370 Subscribers:66
xdemechanik
---



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default sum of cells in different rows & columns & criteria

thanks, your answer worked great.

"Max" wrote:

One way is via SUMIF
In G1:I1 are the identifiers: R, S, V
In G3: =SUMIF($B:$B,G1,$A:$A)+SUMIF($D:$D,G1,$C:$C)
Copy G3 across to I3
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:23,000 Files:370 Subscribers:66
xdemechanik
---
"Question, Mark" wrote:
What formula is needed in G3, H3 & I3 to create the combined totals of row 2
& 3?
Columns B, D & F identify the numbers in A, C & E.
Finished spreadsheet will have 7 number colums with corresponding identifer
colums & 5 different identifers to total. Excel 2003.
Thanks for any help.

a b c d e f g h i
1 Totals: R S V
2 1 R 1 S 1 V
3 1 V .5 R .5 S 1.5 1.5 2



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default sum of cells in different rows & columns & criteria

Thanks, I was able to put both replys to use.

"T. Valko" wrote:

Try this:

=SUMIF($B2:$F3,G1,$A2:$E3)

Copy across

--
Biff
Microsoft Excel MVP


"Max" wrote in message
...
Errata, missed cols E n F earlier. Line:
In G3: =SUMIF($B:$B,G1,$A:$A)+SUMIF($D:$D,G1,$C:$C)


should read:

In G3:
=SUMIF($B:$B,G1,$A:$A)+SUMIF($D:$D,G1,$C:$C)+SUMIF ($F:$F,G1,$E:$E)
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:23,000 Files:370 Subscribers:66
xdemechanik
---




  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default sum of cells in different rows & columns & criteria

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"Question, Mark" wrote in message
...
Thanks, I was able to put both replys to use.

"T. Valko" wrote:

Try this:

=SUMIF($B2:$F3,G1,$A2:$E3)

Copy across

--
Biff
Microsoft Excel MVP


"Max" wrote in message
...
Errata, missed cols E n F earlier. Line:
In G3: =SUMIF($B:$B,G1,$A:$A)+SUMIF($D:$D,G1,$C:$C)

should read:

In G3:
=SUMIF($B:$B,G1,$A:$A)+SUMIF($D:$D,G1,$C:$C)+SUMIF ($F:$F,G1,$E:$E)
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:23,000 Files:370 Subscribers:66
xdemechanik
---






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Criteria across multiple columns and rows wade04 Excel Worksheet Functions 0 February 11th 09 06:36 AM
Count rows with criteria from two columns? Bert Hyman Excel Worksheet Functions 3 January 16th 09 01:17 AM
Searching rows with multiple columns criteria wmclemore Excel Worksheet Functions 4 April 7th 06 05:12 PM
Sum rows if two columns = specific criteria. Jeff Excel Worksheet Functions 2 February 2nd 06 12:29 AM
Sum based on criteria in rows and columns EstherJ Excel Discussion (Misc queries) 1 November 1st 05 10:28 AM


All times are GMT +1. The time now is 01:57 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"