|
> From: Ken Sims
>
> fee = 4 * %int( ( amount + 499.99 ) / 500.00 )
Which I hope you see is equivalent to:
%int((Amt1 - .01) / 500.00) + 1
Follow the bouncing formula:
%int((Amt1 - delta) / increment) + 1
%int((Amt1 - delta) / increment) + increment/increment
%int((Amt1 - delta + increment) / increment)
%int((Amt1 + (increment - delta)) / increment)
%int((Amt1 + (500.00 - .01) / 500.00)
%int((Amt1 + 499.99)) / 500.00)
Wouldn't your algebra teacher be proud? ("See, I TOLD you that you would
need this later in life!")
The only difference between this and my other formula was that I used a
delta of .001 rather than .01. Anything <= .01 would work.
Joe
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.