Is Sum(BAND1:BAND2:BAND3, Item.QTY) supported ?
-
- Posts: 3
- Joined: Wed Mar 03, 2010 3:50 pm
- Location: US
Is Sum(BAND1:BAND2:BAND3, Item.QTY) supported ?
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 ?
Hello,
What you need to do? If you need calculate total over many bands you can use following expression:
Thank you.
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)