Is Sum(BAND1:BAND2:BAND3, Item.QTY) supported ?

Stimulsoft Reports.NET discussion
Post Reply
vchiragiev
Posts: 3
Joined: Wed Mar 03, 2010 3:50 pm
Location: US

Is Sum(BAND1:BAND2:BAND3, Item.QTY) supported ?

Post by vchiragiev »


Sum(BAND1:BAND2, Item.QTY) is working but
Sum(BAND1:BAND2:BAND3, Item.QTY) does not.
I understand that u can workaround using global variable,
but how do I go about 3 and 4 bands then ?

Thanks
Jan
Posts: 1265
Joined: Thu Feb 19, 2009 8:19 am

Is Sum(BAND1:BAND2:BAND3, Item.QTY) supported ?

Post by Jan »

Hello,

What you need to do? If you need calculate total over many bands you can use following expression:

Code: Select all

Sum(BAND1, Item.QTY) + Sum(BAND2, Item.QTY) + Sum(BAND3, Item.QTY)
Thank you.
Post Reply