jeffmoore64
Programmer
Hi,
I have two queries that I want to merge to create a an output that looks something like this:
mycount Store Sales
Q1 1 $139,628.35
Q2 2 $132,666.27
Q3 3 $140,271.89
etc..
Each of these querys runs just fine by it's self using the foodmart2000 sample cube.
This generates the column "mycount":
And this generates the column "store sales":
Any help out there...
Thanks
Jeff
PS this relates to my last post... but got no response on
I have two queries that I want to merge to create a an output that looks something like this:
mycount Store Sales
Q1 1 $139,628.35
Q2 2 $132,666.27
Q3 3 $140,271.89
etc..
Each of these querys runs just fine by it's self using the foodmart2000 sample cube.
This generates the column "mycount":
Code:
WITH
MEMBER [Measures].[mycount] AS
'1'
SELECT
{ [Measures].[mycount]} ON COLUMNS,
{ [Time].[quarter].members } ON ROWS
FROM Sales
cell properties CELL_ORDINAL
And this generates the column "store sales":
Code:
SELECT
{ [Measures].[Store Sales] } ON COLUMNS,
{ [Time].[quarter].members } ON ROWS
FROM Sales
Any help out there...
Thanks
Jeff
PS this relates to my last post... but got no response on