Comparer functions
Comparer functions functions for Power Query M language.
Functions
Function | Description |
---|---|
Comparer.Equals | The function returns a true or false value by checking if the two given values, x and y, are equal according to the provided comparer. A comparer is a tool used to customize how the comparison is done... |
Comparer.FromCulture | This function returns a comparison function based on the specified culture and a logical value, ignoreCase, which determines whether the comparison should be case-sensitive. The default value for igno... |
Comparer.Ordinal | This function returns a comparer that uses Ordinal rules to compare the given values x and y. |
Comparer.OrdinalIgnoreCase | This function returns a comparer that ignores letter case and uses Ordinal rules to compare the values x and y provided. |