Rand Between

  • Thread starter Thread starter wan
  • Start date Start date
W

wan

=RandBetween(1,71000) gave me #Name?

What can I do to get the random number generation?
Thank you for your help.
 
you need to have the "Analysis ToolPak" add in activated
for RandBetween to work.
If you have it activated, I don't know what your problem
is.
 
Hi wan!

You found the disadvantage of using Analysis ToolPak functions.

If you want a method that's independent of Analysis ToolPak, you can
use:

=INT(RAND()*(B-A+1))+A

Replace B and A by cell references or (less desirably) numbers where B
 
Back
Top