I'm using the following to change the format of a numeric field:
formatspeed = Format(cr.Speed, "###.000"
The data, for example, is 123.4567. I'd like to end up with 123.456. I want to drop anything beyond the 3rd decimal but I do not want to round. How can I do this without rounding?
I need to maintain the full length field in my from table but reduce the length for my to table.
Tia for any help!
formatspeed = Format(cr.Speed, "###.000"
The data, for example, is 123.4567. I'd like to end up with 123.456. I want to drop anything beyond the 3rd decimal but I do not want to round. How can I do this without rounding?
I need to maintain the full length field in my from table but reduce the length for my to table.
Tia for any help!