Limit to MOD function

J

jan120253

I have discovered that the MOD funcktion apparently does not work for numbers larger than 268,435,455, as larger numbers return #NUM!. I do not seem to be able to find any documentation for this.

Can anybody help? Is there such a limitation, and is it documentet?

Jan
 
C

Claus Busch

Hi Jan,

Am Sat, 23 Feb 2013 02:22:56 -0800 (PST) schrieb (e-mail address removed):
I have discovered that the MOD funcktion apparently does not work for numbers larger than 268,435,455, as larger numbers return #NUM!. I do not seem to be able to find any documentation for this.

Can anybody help? Is there such a limitation, and is it documentet?

I tested it and you are right. With larger number I get the error. But I
also can't find any documentation about this error. You can do a
workaround:
MOD(n, d) = n - d*INT(n/d)


Regards
Claus Busch
 

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