| The query below returns the data member (using the default measure) for the Q2 FY 2003 member in the Fiscal Quarter level.
|
| |
SELECT {[Date].[Fiscal].[Fiscal Quarter].[Q2 FY 2003].DataMember} ON COLUMNS
FROM [Adventure Works] |
| |
| |
| |
|
| |
|
| The following query returns the data member (for Sales Amount) for the Australia member in the Country level of the Geography hierarchy in the Geography dimension.
|
| |
SELECT {[Geography].[Geography].[Country].[Australia].DataMember} ON COLUMNS
FROM [Adventure Works]
WHERE ([Measures].[Sales Amount]) |
| |
| |
| |
|
| |
|