D
DS
I'm using this to Round Up.
Public Function UP(MyField)
UP = Int(-100 * [MyField]) / -100
End Function
Is there something that I can use to Round Down?
Thanks
DS
Public Function UP(MyField)
UP = Int(-100 * [MyField]) / -100
End Function
Is there something that I can use to Round Down?
Thanks
DS