RAND Function (DAX)

Returns a random number greater than or equal to 0 and less than 1, evenly distributed. The number that is returned changes each time the cell containing this function is recalculated.

RAND()

Property Value/Return Value

A number (R8).

Remarks

In PowerPivot workbooks, recalculation depends on various factors, including whether the workbook is set to Manual or Automatic recalculation mode, and whether data has been refreshed. This is different from Microsoft Excel, where you can control when RAND generates a new random number by turning off recalculation. 

For more information, see Refreshing or Changing Imported Data and Recalculating Formulas.

RAND and other volatile functions that do not have fixed values are not always recalculated. For example, execution of a query or filtering will usually not cause such functions to be re-evaluated. However, the results for these functions will be recalculated when the entire column is recalculated. These situations include refresh from an external data source or manual editing of data that causes re-evaluation of formulas that contain these functions.

Moreover, RAND is always recalculated if the function is used in the definition of a measure.

Also, in such contexts the RAND function cannot return a result of zero, to prevent errors such as division by zero.

Example

To generate a random real number between two other numbers, you can use a formula like the following:

= RAND()*(int1-int2)+int1

See Also

Other Resources

Math and Trigonometric Functions (DAX)

Statistical Functions (DAX)