Conditional Rounding Part deux

Y

yk

How do I include $x.89 value in the below formula to add $0.05 with the $x.09
& $x.59 value?
 
T

Toppers

one way:

=INT((10*A1)+1)/10-0.01+OR(MOD(INT(A1*10)-(INT(A1)*10),5)=0,MOD(INT(A1*10)-(INT(A1)*10),8)=0)*0.05
 
Top