Number.Mod is a Power Query M function that calculates the remainder resulting from the integer division of a number by a divisor. The function returns the remainder or null if either the number or divisor are null.
Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365
Syntax
Number.Mod(
number as nullable number,
divisor as nullable number,
optional precision as nullable number,
) as nullable number
Argument | Attribute | Description |
---|---|---|
number | ||
divisor | ||
precision | optional | The Precision.Type specifies the accuracy level for calculations. When omitting this argument, Power Query uses Precision.Double by default, which, while efficient, may cause rounding errors with very small fractions. For greater accuracy Precision.Decimal offers a more precise number representation, ideal for tasks requiring high precision. |