Returns a uniformly random integer between two values, inclusive.
Sample Usage
RANDBETWEEN(1,10)
RANDBETWEEN(A2,A3)
Syntax
RANDBETWEEN(low, high)
-
low
- The low end of the random range. -
high
- The high end of the random range.
Notes
- Values with decimal parts may be used for
low
and/orhigh
; this will cause the least and greatest possible values to be the next integer greater thanlow
and/or the next integer less thanhigh
, respectively.
See Also
RAND
: Returns a random number between 0 inclusive and 1 exclusive.