You don't, in fact you shouldn't expect a PC to handle 20 digits of decimal precision math correctly.
You can fake it by setting the precision to 10, and then appending on 10 additional digits of zeroes if you'd like using a text field or by converting it to text, as in:
totext({table.field})+"0000000000"
-k