Hi David,
Excel's precision is 15 decimal digits. So if the integer part of the number is 4 places, there's only 11 left for the fraction.
Look here:
http://www.cpearson.com/excel/rounding.htm
--
Kind regards,
Niek Otten
Microsoft MVP - Excel
"David" <(E-Mail Removed)> wrote in message news:71e14214-ed37-42cb-86e4-(E-Mail Removed)...
| Hi
|
| I've a calculation in Excel VBA and it defaults to giving the result
| up to 11 decimal places. I need it to be accurate to 16 decimal
| places. Can this be done and if so how?
|
| Here's the calculation:
|
| cur_interestPart1 = (cur_balance - cur_offset_amount) * ((int_rate1 /
| 365) * (int_days_of_interest - int_days_of_interest_hols))
|
| Thanks.