Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Adding data in columns based on criteria in more than one column..

I asked this before but my explanation was labored and the answer didn't
address my needs. Here is a fuller, and I hope, clearer explanation. How do
add the figures in one or more columns based on criteria in more than one
column? For example assume the following worksheet:

A B C D E

1 aaa n n n
2 bbb zzz n n n
3 aaa yyy n n n
4 ccc xxx n n n
5 aaa www n n n
6 bbb n n n
7 bbb zzz n n n
8 ccc n n n

The real worksheet has hundreds of rows. I would like to add up the n's in
the rows that have a specific criteria, e.g. aaa in Column A and bull
(blanks) in Column B. I would also like to add up the n's in the rows that
have a specific criteria in Column A and anything in Column B (not null or
blank), e.g. aaa and yyy with the aaa and www. There are too many different
strings in Column B to use specific criteria. Any help would br greatly
appreciated. Setts
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Adding data in columns based on criteria in more than one column..

=SUMPRODUCT((A1:A100="aaa")*(B1:B100<"")*(C1:E100 ="n"))



"Setts" wrote:

I asked this before but my explanation was labored and the answer didn't
address my needs. Here is a fuller, and I hope, clearer explanation. How do
add the figures in one or more columns based on criteria in more than one
column? For example assume the following worksheet:

A B C D E

1 aaa n n n
2 bbb zzz n n n
3 aaa yyy n n n
4 ccc xxx n n n
5 aaa www n n n
6 bbb n n n
7 bbb zzz n n n
8 ccc n n n

The real worksheet has hundreds of rows. I would like to add up the n's in
the rows that have a specific criteria, e.g. aaa in Column A and bull
(blanks) in Column B. I would also like to add up the n's in the rows that
have a specific criteria in Column A and anything in Column B (not null or
blank), e.g. aaa and yyy with the aaa and www. There are too many different
strings in Column B to use specific criteria. Any help would br greatly
appreciated. Setts

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Adding data in columns based on criteria in more than one colu

Would you kindly explain how this works? Since there are no commas it seems
you specified one argument and that argument is an expression not an array
reference. I have been trying various ways and get nothing that seems
usuable. Please explain how this adds up only those numbers that are in rows
that match data in other columns in those rows, including arguments that are
expressions (e.g. <"") and others strings ("aaa"). Sorry for being so
dense. Setts

"Teethless mama" wrote:

=SUMPRODUCT((A1:A100="aaa")*(B1:B100<"")*(C1:E100 ="n"))



"Setts" wrote:

I asked this before but my explanation was labored and the answer didn't
address my needs. Here is a fuller, and I hope, clearer explanation. How do
add the figures in one or more columns based on criteria in more than one
column? For example assume the following worksheet:

A B C D E

1 aaa n n n
2 bbb zzz n n n
3 aaa yyy n n n
4 ccc xxx n n n
5 aaa www n n n
6 bbb n n n
7 bbb zzz n n n
8 ccc n n n

The real worksheet has hundreds of rows. I would like to add up the n's in
the rows that have a specific criteria, e.g. aaa in Column A and bull
(blanks) in Column B. I would also like to add up the n's in the rows that
have a specific criteria in Column A and anything in Column B (not null or
blank), e.g. aaa and yyy with the aaa and www. There are too many different
strings in Column B to use specific criteria. Any help would br greatly
appreciated. Setts

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Adding data in columns based on criteria in more than one colu

=SUMPRODUCT((A1:A100="aaa")*(B1:B100<"")*(C1:E100 ="n"))

That formula is counting the literal character "n". Is that what you wanted?

My interpretation of your post is "n" represents a number and you want the
SUM.

aaa in Column A and [n]ull (blanks) in Column B.


=SUMPRODUCT((A1:A8="aaa")*(B1:B8="")*C1:E8)

specific criteria in Column A and anything in Column B
aaa and yyy with the aaa and www.


=SUMPRODUCT((A1:A8="aaa")*(B1:B8<"")*C1:E8)

--
Biff
Microsoft Excel MVP


"Setts" wrote in message
...
Would you kindly explain how this works? Since there are no commas it
seems
you specified one argument and that argument is an expression not an array
reference. I have been trying various ways and get nothing that seems
usuable. Please explain how this adds up only those numbers that are in
rows
that match data in other columns in those rows, including arguments that
are
expressions (e.g. <"") and others strings ("aaa"). Sorry for being so
dense. Setts

"Teethless mama" wrote:

=SUMPRODUCT((A1:A100="aaa")*(B1:B100<"")*(C1:E100 ="n"))



"Setts" wrote:

I asked this before but my explanation was labored and the answer
didn't
address my needs. Here is a fuller, and I hope, clearer explanation.
How do
add the figures in one or more columns based on criteria in more than
one
column? For example assume the following worksheet:

A B C D E

1 aaa n n n
2 bbb zzz n n n
3 aaa yyy n n n
4 ccc xxx n n n
5 aaa www n n n
6 bbb n n n
7 bbb zzz n n n
8 ccc n n n

The real worksheet has hundreds of rows. I would like to add up the
n's in
the rows that have a specific criteria, e.g. aaa in Column A and bull
(blanks) in Column B. I would also like to add up the n's in the rows
that
have a specific criteria in Column A and anything in Column B (not null
or
blank), e.g. aaa and yyy with the aaa and www. There are too many
different
strings in Column B to use specific criteria. Any help would br
greatly
appreciated. Setts



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Adding data in columns based on criteria in more than one colu

Biff: Sorry, no go. I tried your SUMPRODUCT various ways and none worked.
Always ### Value ###. Is the suggested function have a reference to only
one array? There are no commas separating the arguments. Setts

"T. Valko" wrote:

=SUMPRODUCT((A1:A100="aaa")*(B1:B100<"")*(C1:E100 ="n"))


That formula is counting the literal character "n". Is that what you wanted?

My interpretation of your post is "n" represents a number and you want the
SUM.

aaa in Column A and [n]ull (blanks) in Column B.


=SUMPRODUCT((A1:A8="aaa")*(B1:B8="")*C1:E8)

specific criteria in Column A and anything in Column B
aaa and yyy with the aaa and www.


=SUMPRODUCT((A1:A8="aaa")*(B1:B8<"")*C1:E8)

--
Biff
Microsoft Excel MVP


"Setts" wrote in message
...
Would you kindly explain how this works? Since there are no commas it
seems
you specified one argument and that argument is an expression not an array
reference. I have been trying various ways and get nothing that seems
usuable. Please explain how this adds up only those numbers that are in
rows
that match data in other columns in those rows, including arguments that
are
expressions (e.g. <"") and others strings ("aaa"). Sorry for being so
dense. Setts

"Teethless mama" wrote:

=SUMPRODUCT((A1:A100="aaa")*(B1:B100<"")*(C1:E100 ="n"))



"Setts" wrote:

I asked this before but my explanation was labored and the answer
didn't
address my needs. Here is a fuller, and I hope, clearer explanation.
How do
add the figures in one or more columns based on criteria in more than
one
column? For example assume the following worksheet:

A B C D E

1 aaa n n n
2 bbb zzz n n n
3 aaa yyy n n n
4 ccc xxx n n n
5 aaa www n n n
6 bbb n n n
7 bbb zzz n n n
8 ccc n n n

The real worksheet has hundreds of rows. I would like to add up the
n's in
the rows that have a specific criteria, e.g. aaa in Column A and bull
(blanks) in Column B. I would also like to add up the n's in the rows
that
have a specific criteria in Column A and anything in Column B (not null
or
blank), e.g. aaa and yyy with the aaa and www. There are too many
different
strings in Column B to use specific criteria. Any help would br
greatly
appreciated. Setts






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Adding data in columns based on criteria in more than one colu

OK, you haven't said which interpretation of your post is correct. So....

Here's a small sample file that demonstrates my interpretation. I used your
sample data and replaced "n" with random numbers.

Sample file:

xSumproduct.xls 14kb

http://cjoint.com/?gvihcq6juw

As you'll see the formula does work and it does return the correct results.

There are no commas separating the arguments.


Don't get "obsessed" over commas!

--
Biff
Microsoft Excel MVP


"Setts" wrote in message
...
Biff: Sorry, no go. I tried your SUMPRODUCT various ways and none
worked.
Always ### Value ###. Is the suggested function have a reference to only
one array? There are no commas separating the arguments. Setts

"T. Valko" wrote:

=SUMPRODUCT((A1:A100="aaa")*(B1:B100<"")*(C1:E100 ="n"))


That formula is counting the literal character "n". Is that what you
wanted?

My interpretation of your post is "n" represents a number and you want
the
SUM.

aaa in Column A and [n]ull (blanks) in Column B.


=SUMPRODUCT((A1:A8="aaa")*(B1:B8="")*C1:E8)

specific criteria in Column A and anything in Column B
aaa and yyy with the aaa and www.


=SUMPRODUCT((A1:A8="aaa")*(B1:B8<"")*C1:E8)

--
Biff
Microsoft Excel MVP


"Setts" wrote in message
...
Would you kindly explain how this works? Since there are no commas it
seems
you specified one argument and that argument is an expression not an
array
reference. I have been trying various ways and get nothing that seems
usuable. Please explain how this adds up only those numbers that are
in
rows
that match data in other columns in those rows, including arguments
that
are
expressions (e.g. <"") and others strings ("aaa"). Sorry for being so
dense. Setts

"Teethless mama" wrote:

=SUMPRODUCT((A1:A100="aaa")*(B1:B100<"")*(C1:E100 ="n"))



"Setts" wrote:

I asked this before but my explanation was labored and the answer
didn't
address my needs. Here is a fuller, and I hope, clearer
explanation.
How do
add the figures in one or more columns based on criteria in more
than
one
column? For example assume the following worksheet:

A B C D E

1 aaa n n n
2 bbb zzz n n n
3 aaa yyy n n n
4 ccc xxx n n n
5 aaa www n n n
6 bbb n n n
7 bbb zzz n n n
8 ccc n n n

The real worksheet has hundreds of rows. I would like to add up the
n's in
the rows that have a specific criteria, e.g. aaa in Column A and
bull
(blanks) in Column B. I would also like to add up the n's in the
rows
that
have a specific criteria in Column A and anything in Column B (not
null
or
blank), e.g. aaa and yyy with the aaa and www. There are too many
different
strings in Column B to use specific criteria. Any help would br
greatly
appreciated. Setts






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Adding data in columns based on criteria in more than one colu

See this for a detailed explanation of how SUMPRODUCT can be used:

http://xldynamic.com/source/xld.SUMPRODUCT.html

--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
OK, you haven't said which interpretation of your post is correct. So....

Here's a small sample file that demonstrates my interpretation. I used
your sample data and replaced "n" with random numbers.

Sample file:

xSumproduct.xls 14kb

http://cjoint.com/?gvihcq6juw

As you'll see the formula does work and it does return the correct
results.

There are no commas separating the arguments.


Don't get "obsessed" over commas!

--
Biff
Microsoft Excel MVP


"Setts" wrote in message
...
Biff: Sorry, no go. I tried your SUMPRODUCT various ways and none
worked.
Always ### Value ###. Is the suggested function have a reference to
only
one array? There are no commas separating the arguments. Setts

"T. Valko" wrote:

=SUMPRODUCT((A1:A100="aaa")*(B1:B100<"")*(C1:E100 ="n"))

That formula is counting the literal character "n". Is that what you
wanted?

My interpretation of your post is "n" represents a number and you want
the
SUM.

aaa in Column A and [n]ull (blanks) in Column B.

=SUMPRODUCT((A1:A8="aaa")*(B1:B8="")*C1:E8)

specific criteria in Column A and anything in Column B
aaa and yyy with the aaa and www.

=SUMPRODUCT((A1:A8="aaa")*(B1:B8<"")*C1:E8)

--
Biff
Microsoft Excel MVP


"Setts" wrote in message
...
Would you kindly explain how this works? Since there are no commas it
seems
you specified one argument and that argument is an expression not an
array
reference. I have been trying various ways and get nothing that seems
usuable. Please explain how this adds up only those numbers that are
in
rows
that match data in other columns in those rows, including arguments
that
are
expressions (e.g. <"") and others strings ("aaa"). Sorry for being
so
dense. Setts

"Teethless mama" wrote:

=SUMPRODUCT((A1:A100="aaa")*(B1:B100<"")*(C1:E100 ="n"))



"Setts" wrote:

I asked this before but my explanation was labored and the answer
didn't
address my needs. Here is a fuller, and I hope, clearer
explanation.
How do
add the figures in one or more columns based on criteria in more
than
one
column? For example assume the following worksheet:

A B C D E

1 aaa n n n
2 bbb zzz n n n
3 aaa yyy n n n
4 ccc xxx n n n
5 aaa www n n n
6 bbb n n n
7 bbb zzz n n n
8 ccc n n n

The real worksheet has hundreds of rows. I would like to add up
the
n's in
the rows that have a specific criteria, e.g. aaa in Column A and
bull
(blanks) in Column B. I would also like to add up the n's in the
rows
that
have a specific criteria in Column A and anything in Column B (not
null
or
blank), e.g. aaa and yyy with the aaa and www. There are too many
different
strings in Column B to use specific criteria. Any help would br
greatly
appreciated. Setts







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
Adding rows of data based on first column Dewaynep New Users to Excel 3 May 1st 08 02:52 PM
Help getting first column data based on criteria? Tami Excel Worksheet Functions 5 August 22nd 06 11:17 PM
sum items in a column based on criteria located in other columns Kurt Excel Discussion (Misc queries) 1 August 2nd 06 05:12 PM
sumproduct 2 columns based on criteria in 3rd column excel guru i''m not Excel Discussion (Misc queries) 5 December 31st 05 03:47 PM
How to add data to a column based on criteria from another Lynn Bales Excel Discussion (Misc queries) 4 July 14th 05 04:11 PM


All times are GMT +1. The time now is 06:42 PM.

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"