Value.NullableEquals

 

This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.

Returns a logical value or null based on two values .

Value.NullableEquals(value1 as any, value2 as any) as any  

ArgumentDescription
value1The right value to compare.
value2The left value to compare.
  • If either of the argument is null, it applies a nullable equality rules; otherwise, the same result as Value.Equals.
Value.NullableEquals(1, null) equals null  

Show: