Value.Subtract

Value.Subtract is a Power Query M function that calculates the difference between value1 and value2, with an optional precision parameter. The function returns the difference of the two input values, using the specified precision if provided.

Compatible with: Power BI Service Power BI Desktop Excel Microsoft 365

Syntax

Value.Subtract(
   value1 as any,
   value2 as any,
   optional precision as nullable number,
) as any
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.

Description

Returns the difference of value1 and value2. An optional precision parameter may be specified, by default Precision.Double is used.

Learn more about Value.Subtract in the following articles:

Other functions related to Value.Subtract are:

BI Gorilla Youtube Channel

Last update: December 1, 2023 | Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/powerquery-m/value-subtract
© 2023 BI Gorilla. All rights reserved. Content derived from Microsoft documentation is property of Microsoft Corp.