Page 1 of 1

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

Posted: Fri Mar 12, 2010 6:38 pm
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

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

Posted: Mon Mar 15, 2010 12:55 am
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.