TRUE
Gilt für:Berechnete SpalteBerechnete TabelleMeasurevisuelle Berechnung
Gibt den Wahrheitswert TRUE
zurück.
Syntax
TRUE()
Rückgabewert
Immer TRUE
.
Bemerkungen
Das Wort TRUE
wird auch als Wahrheitswert TRUE
interpretiert.
Beispiel
Die Formel gibt den Wahrheitswert TRUE
zurück, wenn der Wert in der Spalte "InternetSales_USD"[SalesAmount_USD] größer als 20000 ist.
= IF(SUM('InternetSales_USD'[SalesAmount_USD]) >200000, TRUE(), false())
Die folgende Tabelle zeigt die Ergebnisse, wenn die Beispielformel in einem Bericht mit 'ProductCategory'[ProductCategoryName] in Zeilenbeschriftungen und 'DateTime'[CalendarYear] in Spaltenbeschriftungen verwendet wird.
Row Labels | 2005 | 2006 | 2007 | 2008 | - | Grand Total |
---|---|---|---|---|---|---|
Accessories | FALSE |
FALSE |
TRUE |
TRUE |
FALSE |
TRUE |
Bikes | TRUE |
TRUE |
TRUE |
TRUE |
FALSE |
TRUE |
Clothing | FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
TRUE |
Komponenten | FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
|
Grand Total | TRUE |
TRUE |
TRUE |
TRUE |
FALSE |
TRUE |