Hi.<br><br>I need to find a way to transfer a numeric (to 12 decimal places) to a table that only allows 6 decimal places, without rounding. The only way I have come up with is to convert to a string, search for the decimal place, then use SUBSTR to return each of the first 6 characters after the decimal. Then I'd convert back to a numeric. But there must be an easier way. Thanks!