NOT DAX Function
The NOT function changes FALSE to TRUE, or TRUE to FALSE.
DAX Syntax NOT(Logical_Value)
The parameter is a value or expression that can be evaluated to TRUE or FALSE.
Example: Create a Calculated Column.
DAX
Column 2 = NOT('Sheet1'[Column])
Here, “Column” is the name of the column in the query named Sheet1.