Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I am facing a problem displaying summary data for two or more data sets on one line
An abridged form of the data is
Data-Set Attribute Value-1 Value-2
Plan A1 100 50
Plan A1 200 80
Plan A2 60 30
Actual A1 20 10
Actual A2 30 20
Actual A3 10 5
Bud-1 A1 50 25
Bud-2 A3 80 40
I want to display a table chart selecting two Data-Sets - eg Plan and Actual and displaying
Attribute Total-Value-1(Data-Set=Plan) Total-Value-1(Data-Set=Actual) Variance(Plan/Actual)
A1 200 20 -180
A2 60 30 -30
If I have a chart with dimensions Data-Set(coilumn hidden) and Attribute
and expression of
IF([Data-Set]='Plan',sum(Value-1),0)
IF([Data-Set]='Actual',sum(Value-1),0) etc
I get two lines for each attribute
Attribute Total-Value-1(Data-Set=Plan) Total-Value-1(Data-Set=Actual) Variance(Plan/Actual)
A1 200 0 -200
A1 0 20 20
A2 60 0 -60
A2 0 30 30
How can I get a single line please?
Use Attribute as dimension and three expressions:
Use Attribute as dimension and three expressions:
Tks very much - works a treat!
Tks Sasidhar - that works well - sorry my level is not even close to you guys