Função TRUE
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 |
2005 |
2006 |
2007 |
2008 |
|
Grand Total |
Acessórios |
FALSE |
FALSE |
TRUE |
TRUE |
FALSE |
TRUE |
Bikes |
TRUE |
TRUE |
TRUE |
TRUE |
FALSE |
TRUE |
Clothing |
FALSE |
FALSE |
FALSE |
FALSE |
FALSE |
TRUE |
Componentes |
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())