Goal: Generate random data for simulations.
RAND: Any decimal between 0 and 1.
RANDBETWEEN: Any whole number between specific limits.
Ready...
💻 Formula Structure
=RAND()
- Args: None. Takes no inputs.
- Result: A decimal >= 0 and < 1.
=RANDBETWEEN(bottom, top)
- 1. Bottom: The lowest possible number (e.g., 1).
- 2. Top: The highest possible number (e.g., 100).
-- Select a generator...
...
⚠️ Common Pitfalls
🚫 Volatile Functions
Both functions recalculate every time you change any cell in the workbook. This can slow down large files.
✅ Tip: Copy and "Paste Values" to freeze the numbers.
🚫 RANDBETWEEN Duplicates
It does NOT guarantee unique numbers. You might get the same number twice. Use SEQUENCE or SORTBY for unique random lists.