Função TRUE (DAX)
Retorna o valor lógico TRUE.
Sintaxe
TRUE()
Valor de retorno
Sempre TRUE.
Comentários
A palavra TRUE também é interpretada como o valor lógico TRUE.
Exemplo
A fórmula retorna o valor lógico TRUE quando o valor na coluna 'InternetSales_USD'[SalesAmount_USD] é maior que 200000.
A tabela a seguir mostra os resultados quando a fórmula de exemplo é usada em uma Tabela Dinâmica, com 'ProductCategory'[ProductCategoryName] em Rótulos de Linha e 'DateTime'[CalendarYear] em Rótulos de Coluna.
True-False |
Rótulos de Coluna |
|
|
|
|
|
---|---|---|---|---|---|---|
Rótulos de Linha |
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())
Consulte também