select
[Measures].[Internet Sales Amount] on columns,
ancestor([Customer].[Customer Geography].[Customer].[Crystal Zheng],[Customer].[Customer Geography].[City])
on rows
from [Adventure Works]
--alternate syntax
select
[Measures].[Internet Sales Amount] on columns,
ascendants([Customer].[Customer Geography].[Customer].[Crystal Zheng])
on rows
from [Adventure Works]
//positive lead and negative lag
select
{[Date].[Calendar].[Calendar Quarter].[Q1 CY 2003],
[Date].[Calendar].[Calendar Quarter].[Q1 CY 2003].lag(3)} on columns,
[Measures].[Reseller Sales Amount] on rows
from [Adventure Works]
//head
select
{[Measures].[Internet Sales Amount],[Measures].[Internet Tax Amount]} on columns,
head([Customer].[Customer Geography].[Country],5) on rows
from [Adventure Works]
//
select
{[Measures].[Internet Sales Amount],[Measures].[Internet Tax Amount]}
on columns,
{[Customer].[Customer Geography].[Country].[Germany],
[Customer].[Customer Geography].[Country].[Germany].nextmember.nextmember}
on rows
from
[Adventure Works]
Subscribe to:
Post Comments (Atom)
Search This Blog
DAX - Grouping on multiple columns and the count
Please go thorugh the below URL for entire soultion. http://community.powerbi.com/t5/Desktop/DAX-Grouping-on-multiple-columns-and-the-cou...
-
Synchronous vs Asynchronous The SSIS dataflow contain three types of transformations. They can be non-blocking, semi-blocking or full...
-
--SHRINKFILE and TRUNCATE Log File in SQL Server SELECT DB_NAME(database_id) AS DatabaseName, Physical_Name, Name AS Logical_Na...
-
The main statement used to retrieve data in T-SQL is the SELECT statement. Following are the main query clauses specified in the order that...
No comments:
Post a Comment