Has anyone ever experienced this? I think it has to do with floating point stuff...
?int(Abs(-9.95) * 100)
994
?Abs(-9.95) * 100
995
?int(round(Abs(-9.95) * 100,0))
995
Why oh why is that first one not 995??? Brrrrrr... Anyway I added the round to make sure, but AAaaaaaargh....

?int(Abs(-9.95) * 100)
994
?Abs(-9.95) * 100
995
?int(round(Abs(-9.95) * 100,0))
995
Why oh why is that first one not 995??? Brrrrrr... Anyway I added the round to make sure, but AAaaaaaargh....

