Value.NullableEquals is a Power Query M function that returns null if either input value is null, otherwise, it is equivalent to Value.Equals. The function returns either null or the result of the Value.Equals function.
Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365
Syntax
Value.NullableEquals(
value1 as any,
value2 as any,
optional precision as nullable number,
) as nullable logical
| Argument | Attribute | Description |
|---|---|---|
| value1 | ||
| value2 | ||
| 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. |