Hi,
I want to roll up even 1 cent in the box that I marked below (in red rectangle). At the moment as default behaviour it rolling up or down which ever close. If the result amount is $137.04 it should be rolled up $138. How can I do that? I also uploaded the file below link.
Regards
http://teomanefendi.fileave.com/adobe/schoolfeeB.pdf
Solved! Go to Solution.
Views
Replies
Total Likes
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
Views
Replies
Total Likes
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
Views
Replies
Total Likes
Thanks very much
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies