I wondered if the was a method to compute the totals from a server service list query?
So the jist is...
Item1, Item2
1,2
3,4
6,7
Totals 10,13
I wondered if the was a method to compute the totals from a server service list query?
So the jist is...
Item1, Item2
1,2
3,4
6,7
Totals 10,13
Hello,
You can save item values to array and count the sum for all values within an array.
This should help:
http://stackoverflow.com/questions/37...
https://developer.mozilla.org/en-US/d...
Thanks Igor, will check it out!