When I put =PRODUCT(213458046676875,29) into Excel, it gives me the answer 6,190,283,353,629,370.<p>The actual answer is 6,190,283,353,629,375.<p>What has happened?
Excel only stores 15 significant digits. Once you get to the 16th digit you'll just get a zero.<p>Example:
6,190,283,353,629,370 + 1 will still be 6,190,283,353,629,370.
6,190,283,353,629,370 + 10 will be 6,190,283,353,629,380
Floating–point numbers happened. Excel uses IEEE–754 floating–point arithmetic because it is fast and ubiquitous. One of the disadvantages of doing math this way is that as you get farther away from zero, the precision of the numbers goes down. It’s generally fine because most people don’t do arithmetic on 6 quadrillion and change, they do arithmetic on smaller, more approachable numbers.<p>Look for a way to solve your problem using software that uses unlimited–precision arithmetic instead.