oder
Gilt für:berechnete Spaltenberechnete TabellenMeasuresvisuelle Berechnungen
Überprüft, ob eines der Argumente TRUE ist, um TRUE zurückzugeben. Die Funktion gibt FALSE zurück, wenn beide Argumente FALSE lauten.
Syntax
OR(<logical1>,<logical2>)
Parameter
Begriff | Definition |
---|---|
logical_1, logical_2 | Die logischen Werte, die Sie testen möchten. |
Rückgabewert
Ein boolescher Wert. Der Wert lautet TRUE, wenn eines der beiden Argumente TRUE ist. Der Wert lautet FALSE, wenn beide Argumente FALSE sind.
Bemerkungen
Die DAX-Funktion OR akzeptiert nur zwei (2) Argumente. Wenn Sie eine OR-Operation für mehrere Ausdrücke verwenden müssen, können Sie eine Reihe von Berechnungen erstellen oder aber den OR-Operator ( || ) verwenden, um all diese Berechnungen in einem einfacheren Ausdruck zusammenzufassen.
Die Funktion wertet die Argumente bis zum ersten TRUE-Argument aus und gibt dann TRUE zurück.
Beispiel
Das folgende Beispiel zeigt, wie Sie mit der OR-Funktion die Vertriebsmitarbeiter abrufen, die zum „Circle of Excellence“ gehören. Der „Circle of Excellence“ zeichnet Vertriebsmitarbeiter aus, die 2007 mehr als eine Million Dollar mit Verkäufen von Tourenrädern oder Verkäufe von über zweieinhalb Millionen Dollar erzielt haben.
IF( OR( CALCULATE(SUM('ResellerSales_USD'[SalesAmount_USD]), 'ProductSubcategory'[ProductSubcategoryName]="Touring Bikes") > 1000000
, CALCULATE(SUM('ResellerSales_USD'[SalesAmount_USD]), 'DateTime'[CalendarYear]=2007) > 2500000
)
, "Circle of Excellence"
, ""
)
Rückgabe
Zeilenbezeichnungen | 2005 | 2006 | 2007 | 2008 | - | Grand Total |
---|---|---|---|---|---|---|
Abbas, Syed E | ||||||
Alberts, Amy E | ||||||
Ansman-Wolfe, Pamela O | ||||||
Blythe, Michael G | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence |
Campbell, David R | ||||||
Carson, Jillian | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence |
Ito, Shu K | ||||||
Jiang, Stephen Y | ||||||
Mensa-Annan, Tete A | ||||||
Mitchell, Linda C | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence |
Pak, Jae B | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence |
Reiter, Tsvi Michael | ||||||
Saraiva, José Edvaldo | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence |
Tsoflias, Lynn N | ||||||
Valdez, Rachel B | ||||||
Vargas, Garrett R | ||||||
Varkey Chudukatil, Ranjit R | Circle of Excellence | |||||
Grand Total | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence | Circle of Excellence |