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
Don Guillett - 20 Jun 2006 20:06 GMT
try
code={"test","live"}

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
> 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
[quoted text clipped - 6 lines]
>
> gregory
gregory - 20 Jun 2006 21:37 GMT
Don,
Thank you very much. This worked!!
gregory
> try
> code={"test","live"}
[quoted text clipped - 9 lines]
> >
> > gregory
Don Guillett - 20 Jun 2006 23:03 GMT
glad to help

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
> Don,
>
[quoted text clipped - 17 lines]
>> >
>> > gregory
bj - 20 Jun 2006 21:43 GMT
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)
> 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
[quoted text clipped - 6 lines]
>
> gregory