RANDBETWEEN
Last updated
Was this helpful?
The RANDBETWEEN function returns a random integer between two specified values. It generates a number within the defined range each time the function is evaluated and is commonly used in simulations, sampling, and testing scenarios where random data is required.
RANDBETWEEN(value1, value2)value1: The smallest integer that RANDBETWEEN returns.
value2: The largest integer that RANDBETWEEN returns.
Returns a random integer between the specified minimum and maximum values.
RANDBETWEEN(52, 110)In this example, the Rand Between measure is created using the RANDBETWEEN function, which generates a random integer between 52 and 110.

Last updated
Was this helpful?
Was this helpful?