Logical functions
Logical functions functions for Power Query M language.
Functions
Function | Description |
---|---|
Logical.From | The function returns a logical value based on the input value. If the input value is null, the function returns null. If the input value is already a logical value, it is returned as is. Different typ... |
Logical.FromText | Generates a boolean result based on the input text value, which can only be either "true" or "false". If any other string is detected in the text, an error is triggered. The input text value is not af... |
Logical.ToText | Generates a text string based on the logical value provided, which can be either true or false. If the input logical value is not valid, an error will be triggered. |