This topic has not yet been rated - Rate this topic

ROW Function (DAX)

SQL Server 2012

Returns a table with a single row containing values that result from the expressions given to each column.

ROW(<name>, <expression>][,<name>, <expression>]…])
name

The name given to the column, enclosed in double quotes.

expression

Any DAX expression that returns a single scalar value to populate. name.

A single row table

Arguments must always come in pairs of name and expression.

The following example returns a single row table with the total sales for internet and resellers channels.

ROW("Internet Total Sales (USD)", SUM(InternetSales_USD[SalesAmount_USD]),
         "Resellers Total Sales (USD)", SUM(ResellerSales_USD[SalesAmount_USD]))

The code is split in two lines for readability purposes

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.