Hi,
I want to display two measures across the two dimensions in a cross-tab report. The output almost should look like this:
Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, XYZÃ, Ã, Ã, Ã, Ã, DEFÃ, Ã, Ã, Total
Ã, Ã, Ã, AÃ, Ã, Ã, Ã, Ã, Ã, Ã, 21Ã, Ã, Ã, Ã, Ã, Ã, 12Ã, Ã, Ã, Ã, 33
Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, 1Ã, Ã, Ã, Ã, Ã, Ã, Ã, 4Ã, Ã, Ã, Ã, 2.5
Ã, Ã, Ã, BÃ, Ã, Ã, Ã, Ã, Ã, Ã, 40Ã, Ã, Ã, Ã, Ã, Ã, 40Ã, Ã, Ã, Ã, 80
Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, 5Ã, Ã, Ã, Ã, Ã, Ã, Ã, 6Ã, Ã, Ã, Ã, 5.5
The first measure would total up and the second is getting averaged.
I first inserted a block in the measures column, the report validates but displayes only one column. I then inserted a table but even that resulted the same..Help me ....
Srik
Can you do it in a list item? If so.. try converting it to a crosstab
i did that...it converts as two measure columns the report will look like this...
XYZ DEF
M1 M2 M1 M2
A 21 1 12 4
B 40 5 6 5.5
Srik
The trick is to build your crosstab with A and B as columns, XYZ and DEF as rows.Ã, Your two measures M1 and M2 come in under XYZ and DEF like so:
Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, AÃ, Ã, Ã, Ã, Ã, Ã, Ã, BÃ, Ã,Â
Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, M1Ã, M2Ã, Ã, M1 M2
Ã, Ã, Ã, XYZÃ, Ã, Ã, 21Ã, Ã, 1Ã, Ã, Ã, 12Ã, Ã, 4
Ã, Ã, Ã, DEFÃ, Ã, Ã, 40Ã, Ã, 5Ã, Ã, Ã, Ã, 6Ã, 5.5
Then swap rows and columns to get
Ã, Ã, Ã, Ã, Ã, Ã, Ã, Ã, XYZÃ, Ã, Ã, Ã, Ã, DEF
AÃ, Ã, Ã, M1Ã, Ã, Ã, 21Ã, Ã, Ã, Ã, Ã, Ã, 40
Ã, Ã, Ã, Ã, M2Ã, Ã, Ã, Ã, 1Ã, Ã, Ã, Ã, Ã, Ã, Ã, 5
BÃ, Ã, Ã, M1Ã, Ã, Ã, 12Ã, Ã, Ã, Ã, Ã, Ã, Ã, 6
Ã, Ã, Ã, Ã, M2Ã, Ã, Ã, Ã, 4Ã, Ã, Ã, Ã, Ã, Ã, 5.5
Does this give you wnat you need?
Best regards,
MF.
thanks a lot...
Srik