Funzione TRUE (DAX)
Restituisce il valore logico TRUE.
Sintassi
TRUE()
Valore restituito
Sempre TRUE.
Osservazioni
La parola TRUE viene anche interpretata come valore logico TRUE.
Esempio
La formula restituisce il valore logico TRUE quando il valore nella colonna 'InternetSales_USD'[SalesAmount_USD] è maggiore di 200000.
Nella tabella seguente vengono mostrati i risultati dell'utilizzo della formula di esempio in una tabella pivot con 'ProductCategory' [ProductCategoryName] nelle etichette di riga e 'DateTime'[CalendarYear] nelle etichette di colonna.
True-False |
Column Labels |
|
|
|
|
|
---|---|---|---|---|---|---|
Row Labels |
2001 |
2002 |
2003 |
2004 |
|
Grand Total |
Accessories |
FALSE |
FALSE |
TRUE |
TRUE |
FALSE |
TRUE |
Bikes |
TRUE |
TRUE |
TRUE |
TRUE |
FALSE |
TRUE |
Clothing |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
TRUE |
Components |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
|
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
Grand Total |
TRUE |
TRUE |
TRUE |
TRUE |
FALSE |
TRUE |
= IF(SUM('InternetSales_USD'[SalesAmount_USD]) >200000, TRUE(), false())
Vedere anche