Summary

To generate a random number between two numbers, you can use the RANDBETWEEN function. In the example shown, the formula in B5 is:

=RANDBETWEEN(1,100)

As the formula is copied down, it returns a random integer between 1 and 100.

Generic formula

=RANDBETWEEN(lower,upper)

Explanation 

The Excel RANDBETWEEN function returns a random integer between given numbers.  In the example shown, the formula in B5 is:

=RANDBETWEEN(1,100)

This formula is then copied down from B5 to B11. The result is random numbers between 1-100.

RANDBETWEEN is a volatile function that recalculates when a worksheet is opened or changed. This includes any edits to the worksheet, also simply opening the workbook. To prevent random numbers from being recalculated again, you can replace the formulas with the values last calculated:

  1. Select the random numbers
  2. Copy the formulas to the clipboard with Control + C.
  3. Open the Paste Special Windo and select "Values"
  4. Click OK to replace the formulas with static values.

Notes

  1. The RAND function can generate random decimal values.
  2. The RANDARRAY function (new in Excel 365) can generate random numeric arrays. 
Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi - I'm Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.