Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 2.03 KB

treatas-function-dax.md

File metadata and controls

53 lines (35 loc) · 2.03 KB
description title
Learn more about: TREATAS
TREATAS function | Microsoft Docs

TREATAS

[!INCLUDEapplies-to-measures-columns-tables-visual-calculations]

Applies the result of a table expression as filters to columns from an unrelated table.

Syntax

TREATAS(table_expression, <column>[, <column>[, <column>[,…]]]} )  

Parameters

Term Definition
table_expression An expression that results in a table.
column One or more existing columns. It cannot be an expression.

Return value

A table that contains all the rows in column(s) that are also in table_expression.

Remarks

  • The number of columns specified must match the number of columns in the table expression and be in the same order.

  • If a value returned in the table expression does not exist in the column, it is ignored. For example, TREATAS({"Red", "Green", "Yellow"}, DimProduct[Color]) sets a filter on column DimProduct[Color] with three values "Red", "Green", and "Yellow". If "Yellow" does not exist in DimProduct[Color], the effective filter values would are "Red" and "Green".

  • Best for use when a relationship does not exist between the tables. If you have multiple relationships between the tables involved, consider using USERELATIONSHIP instead.

  • [!INCLUDE function-not-supported-in-directquery-mode]

Example

In the following example, the model contains two unrelated product tables. If a user applies a filter to DimProduct1[ProductCategory] selecting Bikes, Seats, Tires, the same filter, Bikes, Seats, Tires is applied to DimProduct2[ProductCategory].

CALCULATE(
SUM(Sales[Amount]), 
TREATAS(VALUES(DimProduct1[ProductCategory]), DimProduct2[ProductCategory])
)

Related content

INTERSECT
FILTER
USERELATIONSHIP