Double condition in Sumif

Stimulsoft Reports.PHP discussion
Post Reply
3inweb
Posts: 9
Joined: Sun Mar 11, 2012 11:29 am
Location: Spain

Double condition in Sumif

Post 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
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Double condition in Sumif

Post 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.
Post Reply