How To Handle Large Numbers?

B

bw

A3 = 123456789012
MOD(A3,10) = #NUM!

How do I handle situations like this when numbers are large? Why does it
make any difference what size the number is?
I want to be able to perform operations like this on 13 digit numbers
(unless you suggest a better way).

Thanks,
Bernie
 
F

Frank Kabel

Hi
this is a known bug of the MOD function. One possible workaround
=A3-INT(A3/10)*10
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top