Conditional sum wizard problem--Excel 2000

  • Thread starter Thread starter lcnlit
  • Start date Start date
L

lcnlit

This is driving me crazy. Can anyone explain why this won't work with
the Conditional Sum Wizard? I've used the wizard many times before and
can't figure out why it doesn't work this time.

Category Price Paid?
Core $55.50 yes

If I try to sum "Price" using the criterion Paid?="yes", it works fine
(i.e. I get $55.50).
If I try to sum "Price" using Category="Core", it doesn't work (I get
$0.00).
Both "Category" and "Paid?" are formatted as text; "Price" is formatted
as currency.

Thanks.
 
What do your conditional format formulas look like? These worked for
me:
=IF(D3="yes",C3,0)
=IF(B4="core",C4,0)
 
(In my spreadsheet, Category is column D, Price is column E).

Category Price Paid?
Core $55.50 yes
ESL $20.00 yes

Conditional Sum Formula for "Core":
=SUM(IF($D$2:$D$52="Core",$E$2:$E$52,0))
Conditional Sum Formula for
"ESL":=SUM(IF($D$2:$D$52="ESL",$E$2:$E$52,0))
The ESL one works fine; the Core one doesn't!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top