DSUM with AND range as Critera

salpalpable

New Member
Joined
Jun 6, 2017
Messages
7
Hi guys, I'm newish to excel and this forum, please let me know if I'm posting in error, but I'm having a hard time googling this one out.

I've inherited a spreadhseet with a Named Range Called "Criteria" which includes columns names NUM, USD, CO and NET_AMT and their data. This is the only named range, the columns aren't named.

I have the following formula: =SUM(Criteria,"NET_AMT",O15:O16) which sums up the NET_AMT with the criteria in O16.

O15:O16 are as follows:

=AND(NUM>="C123",NUM<"C9999",CUR="USD",CO="HO")
=AND(NUM>="X122",NUM<"C9999",CUR="USD",CO="HO")

<tbody>
</tbody>


These cells show up as
#NAME?
#NAME?

<tbody>
</tbody>
presumably because NUM and CUR aren't real references/object?

Can anyone tell me what's going on?

It seems to only filter by O16, but the range doesnt work without O15, and doesn't care if O15 is blank. Why does NUM<"C9999" work as a valid criteria even though NUM is only a column name value and not a named range? Why is everything in "" ? Why does AND function as a way to express multiple criteria even though it evaluates as a boolean?

Thanks!!
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Welcome to MrExcel forum.

It is showing the error because you don't have a column with the header "CUR".

hth
 
Upvote 0
I'd really have to see what you're looking at. Could you post an image of the pertinent section of the sheet? Then, I suspect, people will be able to help you.
 
Upvote 0
I have the following formula: =SUM(Criteria,"NET_AMT",O15:O16) which sums up the NET_AMT with the criteria in O16.

Are you sure that is SUM() and not SUMIF()?
 
Upvote 0
I made this while I was trying to figure out was going on, hope this helps:

J61hzKW.png


My Questions:
1) Why do I need to use range B12:C13 instead of must B12:C13? Its a #VALUE error with only one row and the first row doesn't seem to matter.
2) Why is everything in quotes? For C13, =AND(Tree="D6") doesn't seem to work even if D6 is "Apple" or ="=Apple", is there a way around there?
3) How Is DSUM using arguments inside of an AND function as criteria?
4) What is it about column headers that lets me reference them in Age="Meow" but still triggers #NAME error?

Does this make sense? :confused:
 
Upvote 0
Here are the answers to quuestions from Post #1:
... These cells show up as
#NAME?

#NAME?

presumably because NUM and CUR aren't real references/object?..
Correct. Names NUM, CUR, and CO are not defined.

... It seems to only filter by O16, but the range doesnt work without O15, and doesn't care if O15 is blank...
You have to have at least two adjacent cells in the same column as a criteria range. This is because the DSUM description states that "You can use any range for the criteria argument, as long as it includes at least one column label and at least one cell below the column label in which you specify a condition for the column."

... Why does NUM<"C9999" work as a valid criteria even though NUM is only a column name value and not a named range?..
This is because DSUM is capable of handling such a syntax.

... Why is everything in "" ?..
This is because these values are strings.

... Why does AND function as a way to express multiple criteria even though it evaluates as a boolean?
The AND() tells DSUM to sum only those values from the NET_AMT column that satisfy all the criteria. The OR() can be used to sum the values that satisfy at least one of the criteria.
 
Upvote 0
OK!! Looks like I should have read the syntax better for the basic DSUM questions, my bad, thanks for answering.

I'm still a little confused on how AND() tells DSUM to evaluate those conditions, from other backgrounds would have guessed that AND would evaluate separately (to #name I guess?) and then DSUM would just be getting a "TRUE" or "FALSE" for a criteria. Is there some aspect of the AND operator that's doing this, or is there more of a general excel formula order of operation kinda thing I should read up on?
 
Upvote 0
Not sure I understand your question.

Having any value/formula in O15 and =AND(NUM>="X122",NUM<"X9999",CUR="USD",CO="HO") in O16 is equivalent to using the following criteria range:
Code:
|NUM   |NUM    |CUR    |CO    |
|>=X122|< X9999|="=USD"|="=HO"|
<x9999|="=usd"|="=ho"|[ html="" CODE]<=""></x9999|="=usd"|="=ho"|[>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,519
Members
448,968
Latest member
Ajax40

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