TRUE
Gilt für:Berechnete Spalteberechnete TabelleMeasurevisuelle Berechnung
Gibt den logischen valueTRUE
zurück.
Syntax
TRUE()
value zurückgeben
Immer TRUE
.
Bemerkungen
Das Wort TRUE
wird auch als logische valueTRUE
interpretiert.
Beispiel
Die Formel gibt die logische valueTRUE
zurück, wenn die value in der Spalte "InternetSales_USD"[SalesAmount_USD] größer als 200000 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 and '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 |