Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rob
 
Posts: n/a
Default Sumproduct with two criteria

I should be able to do this by now but I keep getting an #NA error. I am
trying to use this sumproduct formula
=SUMPRODUCT(($I$7:$I$2585=921),--($L$7:$L$2585="Fb")--(AS7:AS2585)) where I
am looking up store #"921" and Attribute "fb and sum where these two criteria
meet. The column I want to sum is AS7:As285. What am I doing wrong.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Tarburton
 
Posts: n/a
Default Sumproduct with two criteria

You are missing the "--" before the 1st condition and the "," before the
last

"Rob" wrote in message
...
I should be able to do this by now but I keep getting an #NA error. I am
trying to use this sumproduct formula
=SUMPRODUCT(($I$7:$I$2585=921),--($L$7:$L$2585="Fb")--(AS7:AS2585)) where
I
am looking up store #"921" and Attribute "fb and sum where these two
criteria
meet. The column I want to sum is AS7:As285. What am I doing wrong.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sloth
 
Posts: n/a
Default Sumproduct with two criteria

=SUMPRODUCT(--($I$7:$I$2585=921),--($L$7:$L$2585="Fb"),--(AS7:AS2585))

"Rob" wrote:

I should be able to do this by now but I keep getting an #NA error. I am
trying to use this sumproduct formula
=SUMPRODUCT(($I$7:$I$2585=921),--($L$7:$L$2585="Fb")--(AS7:AS2585)) where I
am looking up store #"921" and Attribute "fb and sum where these two criteria
meet. The column I want to sum is AS7:As285. What am I doing wrong.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rob
 
Posts: n/a
Default Sumproduct with two criteria

Thanks for the help but I am still getting an NA. I traced the error and
there is an NA in the I column but that does not meet my criteria.

"Sloth" wrote:

=SUMPRODUCT(--($I$7:$I$2585=921),--($L$7:$L$2585="Fb"),--(AS7:AS2585))

"Rob" wrote:

I should be able to do this by now but I keep getting an #NA error. I am
trying to use this sumproduct formula
=SUMPRODUCT(($I$7:$I$2585=921),--($L$7:$L$2585="Fb")--(AS7:AS2585)) where I
am looking up store #"921" and Attribute "fb and sum where these two criteria
meet. The column I want to sum is AS7:As285. What am I doing wrong.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Kevin Vaughn
 
Posts: n/a
Default Sumproduct with two criteria

I was going to say, I don't believe sumproduct will return an #N/A unless the
value is in the range to be summed as N/A is the result of a failed lookup.
You could account for the possibility in the sumproduct formula, but it is
probably better to take care of it at its source. Many people wrap their
lookup formula in a ISNA function .. =isna(vlookup( ...), "", vlookup( ...))
which basically says if the value returned from the vlookup is #N/A then
return Null else return the vlookup value.

I saw something on a related forum this morning that I thought was clever.
It was basically =if(countif(range, criteria) 0, vlookup(criteria, range,
2, false) , 0)
Though I would probably use "" rather than 0 (for the value to be returned
if criteria not found.

The suggestion was from Jim ...(don't remember his last name, hold on.)
Thomlinson (if I'm not mistaken)
--
Kevin Vaughn


"Rob" wrote:

Thanks for the help but I am still getting an NA. I traced the error and
there is an NA in the I column but that does not meet my criteria.

"Sloth" wrote:

=SUMPRODUCT(--($I$7:$I$2585=921),--($L$7:$L$2585="Fb"),--(AS7:AS2585))

"Rob" wrote:

I should be able to do this by now but I keep getting an #NA error. I am
trying to use this sumproduct formula
=SUMPRODUCT(($I$7:$I$2585=921),--($L$7:$L$2585="Fb")--(AS7:AS2585)) where I
am looking up store #"921" and Attribute "fb and sum where these two criteria
meet. The column I want to sum is AS7:As285. What am I doing wrong.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rob
 
Posts: n/a
Default Sumproduct with two criteria


Thanks Kevin:

How would I write that statement with two criteria. The thing about the NA
is that I was having a problem with my sumif statement with 1 criteria
returning an NA even though the NA was not a part of the criteria . I
resolved that one and didn't have to change the data. I just don't get this
one. (LOL)

"Kevin Vaughn" wrote:

I was going to say, I don't believe sumproduct will return an #N/A unless the
value is in the range to be summed as N/A is the result of a failed lookup.
You could account for the possibility in the sumproduct formula, but it is
probably better to take care of it at its source. Many people wrap their
lookup formula in a ISNA function .. =isna(vlookup( ...), "", vlookup( ...))
which basically says if the value returned from the vlookup is #N/A then
return Null else return the vlookup value.

I saw something on a related forum this morning that I thought was clever.
It was basically =if(countif(range, criteria) 0, vlookup(criteria, range,
2, false) , 0)
Though I would probably use "" rather than 0 (for the value to be returned
if criteria not found.

The suggestion was from Jim ...(don't remember his last name, hold on.)
Thomlinson (if I'm not mistaken)
--
Kevin Vaughn


"Rob" wrote:

Thanks for the help but I am still getting an NA. I traced the error and
there is an NA in the I column but that does not meet my criteria.

"Sloth" wrote:

=SUMPRODUCT(--($I$7:$I$2585=921),--($L$7:$L$2585="Fb"),--(AS7:AS2585))

"Rob" wrote:

I should be able to do this by now but I keep getting an #NA error. I am
trying to use this sumproduct formula
=SUMPRODUCT(($I$7:$I$2585=921),--($L$7:$L$2585="Fb")--(AS7:AS2585)) where I
am looking up store #"921" and Attribute "fb and sum where these two criteria
meet. The column I want to sum is AS7:As285. What am I doing wrong.

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Kevin Vaughn
 
Posts: n/a
Default Sumproduct with two criteria

Why don't you post the formula that is returning #N/A? Somebody here will
more than likely be able to figure out a way of wrapping it in a formula that
will suppress the message.
--
Kevin Vaughn


"Rob" wrote:


Thanks Kevin:

How would I write that statement with two criteria. The thing about the NA
is that I was having a problem with my sumif statement with 1 criteria
returning an NA even though the NA was not a part of the criteria . I
resolved that one and didn't have to change the data. I just don't get this
one. (LOL)

"Kevin Vaughn" wrote:

I was going to say, I don't believe sumproduct will return an #N/A unless the
value is in the range to be summed as N/A is the result of a failed lookup.
You could account for the possibility in the sumproduct formula, but it is
probably better to take care of it at its source. Many people wrap their
lookup formula in a ISNA function .. =isna(vlookup( ...), "", vlookup( ...))
which basically says if the value returned from the vlookup is #N/A then
return Null else return the vlookup value.

I saw something on a related forum this morning that I thought was clever.
It was basically =if(countif(range, criteria) 0, vlookup(criteria, range,
2, false) , 0)
Though I would probably use "" rather than 0 (for the value to be returned
if criteria not found.

The suggestion was from Jim ...(don't remember his last name, hold on.)
Thomlinson (if I'm not mistaken)
--
Kevin Vaughn


"Rob" wrote:

Thanks for the help but I am still getting an NA. I traced the error and
there is an NA in the I column but that does not meet my criteria.

"Sloth" wrote:

=SUMPRODUCT(--($I$7:$I$2585=921),--($L$7:$L$2585="Fb"),--(AS7:AS2585))

"Rob" wrote:

I should be able to do this by now but I keep getting an #NA error. I am
trying to use this sumproduct formula
=SUMPRODUCT(($I$7:$I$2585=921),--($L$7:$L$2585="Fb")--(AS7:AS2585)) where I
am looking up store #"921" and Attribute "fb and sum where these two criteria
meet. The column I want to sum is AS7:As285. What am I doing wrong.

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
daddylonglegs
 
Posts: n/a
Default Sumproduct with two criteria


As Kevin says, it's probably better to eliminate #N/A at source. Do you
only have #N/A in column I, what formula do you have in I?

An alternative is to use a formula like

=SUM(IF(ISNUMBER($I$7:$I$2585),($I$7:$I$2585=921)* ($L$7:$L$2585="Fb")*(AS7:AS2585)))

confirmed with CTRL+SHIFT+ENTER


--
daddylonglegs
------------------------------------------------------------------------
daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486
View this thread: http://www.excelforum.com/showthread...hreadid=510776

  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Tarburton
 
Posts: n/a
Default Sumproduct with two criteria

Whatever your formulaa are for populating columns I, L, and AS, just wrap
them inside an IF and ISERROR like this
=IF(ISERROR(your_formula),"",your_formula)
That should solve the problem

"Rob" wrote in message
...

Thanks Kevin:

How would I write that statement with two criteria. The thing about the
NA
is that I was having a problem with my sumif statement with 1 criteria
returning an NA even though the NA was not a part of the criteria . I
resolved that one and didn't have to change the data. I just don't get
this
one. (LOL)

"Kevin Vaughn" wrote:

I was going to say, I don't believe sumproduct will return an #N/A unless
the
value is in the range to be summed as N/A is the result of a failed
lookup.
You could account for the possibility in the sumproduct formula, but it
is
probably better to take care of it at its source. Many people wrap their
lookup formula in a ISNA function .. =isna(vlookup( ...), "", vlookup(
...))
which basically says if the value returned from the vlookup is #N/A then
return Null else return the vlookup value.

I saw something on a related forum this morning that I thought was
clever.
It was basically =if(countif(range, criteria) 0, vlookup(criteria,
range,
2, false) , 0)
Though I would probably use "" rather than 0 (for the value to be
returned
if criteria not found.

The suggestion was from Jim ...(don't remember his last name, hold on.)
Thomlinson (if I'm not mistaken)
--
Kevin Vaughn


"Rob" wrote:

Thanks for the help but I am still getting an NA. I traced the error
and
there is an NA in the I column but that does not meet my criteria.

"Sloth" wrote:

=SUMPRODUCT(--($I$7:$I$2585=921),--($L$7:$L$2585="Fb"),--(AS7:AS2585))

"Rob" wrote:

I should be able to do this by now but I keep getting an #NA error.
I am
trying to use this sumproduct formula
=SUMPRODUCT(($I$7:$I$2585=921),--($L$7:$L$2585="Fb")--(AS7:AS2585))
where I
am looking up store #"921" and Attribute "fb and sum where these
two criteria
meet. The column I want to sum is AS7:As285. What am I doing
wrong.



  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
R..VENKATARAMAN
 
Posts: n/a
Default Sumproduct with two criteria

is there any #N/A in any of reference columns?


"Rob" wrote in message
...
I should be able to do this by now but I keep getting an #NA error. I am
trying to use this sumproduct formula
=SUMPRODUCT(($I$7:$I$2585=921),--($L$7:$L$2585="Fb")--(AS7:AS2585)) where
I
am looking up store #"921" and Attribute "fb and sum where these two
criteria
meet. The column I want to sum is AS7:As285. What am I doing wrong.



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
Multiple Criteria in SumProduct, N/A Result dcd123 Excel Worksheet Functions 7 October 7th 05 01:26 PM
COUNTIF or SUMPRODUCT counting multiple criteria Peo Sjoblom Excel Worksheet Functions 0 May 31st 05 11:40 PM
Using Sumproduct with multiple Criteria Mark Jackson Excel Worksheet Functions 1 May 6th 05 10:07 PM
Sumproduct w/date criteria not working JANA Excel Worksheet Functions 7 April 15th 05 11:19 AM
SUMPRODUCT Formula to Count Row of data Below Matched Criteria Sam via OfficeKB.com Excel Worksheet Functions 8 February 3rd 05 01:37 AM


All times are GMT +1. The time now is 08:56 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"