Can someone provide me a FormCalc(preferably) or javascript snippet to do the cummulative totalling of a table column at each page?
My requirement:
Page1
pricevalue 10,11
pricevalue 10,12
pricevalue 10,13
--subtotal = 30,36
Page2
Carryforward = 30,36
pricevalue 4,00
pricevalue 4,00
pricevalue 2,00
pricevalue 2,00
pricevalue 2,00
subtotal = 44,36
Page3
Carryforward = 44,36
pricevalue 1,00
pricevalue 1,00
pricevalue 1,00
pricevalue 1,00
pricevalue 1,00
subtotal = 49,36
I have already tried the solution given in https://scn.sap.com/thread/2041995 but I do not get any value in subtotal field.
What should be the formcalc written to get subtotal in page1 which would be the carryforward in page2?
Appreciate your response.
Thanks.