CSE Formula

G

gregory

In creating a CSE formula the asterisk is used for AND... for example:
sum(if((Code="test")*(Acct="Recon"),Amount)), where Code, Acct and Amount
are ranges.

What sign is used for OR? What I'm trying to do is sum the values in the
"Amount" range if Code="test" OR Code="live" AND Acct="Recon"

Thanks,

gregory
 
B

bj

the asterisk is actually "times" and not "and"
you have two true/false statementss with values 0 or 1
try
=sum(if(and(or(Code="test",Code="live"),Acct="Recon"),Amount)
 

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

Top