‎2007 Dec 28 6:52 AM
In my table control 10 line item are there
like below.
Product -
Price
A----
10
B----
10
C----
10
D----
10
E----
10
and at last i have take Txt box for total sum
Total = 50.
its comming right,
My problem is when i scroll down vertical bar
then its Total become 40 or 30 and when i scroll Up then
its showing Correct value..
i want total should be fix. how to solve it.
‎2007 Dec 28 7:11 AM
Hi Monica,
Depends on where you have coded the logic for calculating the total. Do not keep it wihtin a MODULE which lies in the LOOP...ENDLOOP. this might be the reason the value is changing on scrolling.
Put the code within a module outside the LOOP and ENDLOOP, preferably in PBO.
Regards,
Aditya
‎2007 Dec 28 7:47 AM