Number.IsEven
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 true if a value is an even number.
Number.IsEven(value as number) as logical
| Argument | Description |
|---|---|
| value | Value to evaluate. |
Number.IsEven(3) equals false
Number.IsEven(4) equals true
Show: