Page 1 of 1

Double condition in Sumif

Posted: Sun Mar 11, 2012 11:39 am
by 3inweb
Hey. thanks in advance

can I write a double condition in sumif function?

Example: {SumIf (DataBand3, facturas.totalfac, facturas.cobrada == "YES" & (facturas.tipofact == "AM"))}

Operators what should I use?

thanks

Double condition in Sumif

Posted: Mon Mar 12, 2012 4:19 am
by HighAley
Hello.
3inweb wrote:can I write a double condition in sumif function?

Example: {SumIf (DataBand3, facturas.totalfac, facturas.cobrada == "YES" & (facturas.tipofact == "AM"))}

Operators what should I use?
Please, try to use next expression:

Code: Select all

{SumIf (DataBand3, facturas.totalfac, facturas.cobrada == "YES" && facturas.tipofact == "AM")}
Thank you.