Interpreting SWITCH()
Logical functions are utilized to perform more complex computations. As you begin to write these complex computations it's important that you understand how to decipher the expected results when writing it with DAX.
What is the result of the following DAX function?
SWITCH(TRUE,
OR(FALSE, FALSE), "1",
AND(TRUE, FALSE), "2",
OR(TRUE, FALSE), "3",
"4" )
Diese Übung ist Teil des Kurses
Intermediate DAX in Power BI
Interaktive Übung
In dieser interaktiven Übung kannst du die Theorie in die Praxis umsetzen.
Übung starten