Avatar

Correct answer by
Level 5

Hi,

On the text field you have the following script

if (debitamount ne 0) then

     $ = debitamount / termnumber

else

     $ = 0

endif

if you change that to this does that not do what you want

if (debitamount ne 0) then

     $ = Ceil (debitamount / termnumber)

else

     $ = 0

endif

Hope this helps.

Malcolm

View solution in original post