Hi,
I have data like this:
ID Value
1 Value1
1 150
1 10/10/2010
1 Value2
2 Value3
2 160
I join multiple tables and get multiple values for one ID.I am new to BOB. I want to have a report in web intelligence like this:
ID Value
1 Value1, 150, 10/10/2010, Value2
2 Value3, 160
How can I do this? I searched forum and found this :
We will create 4 measure object within the report to achieve this:
-
Create an object called Maximum using the function below:
=Max ([Code]) In ([Date])
-
Create a concatenated object called Object 1 using the formula below:
= [Code]+" , "+Previous(Self)
-
Create another measure object called Object 2 using the formula below:
=[Object 1] Where ([Code]=[Maximum])
-
Finally create an object called Code(s) as below:
=If (IsNull(Previous([Object 2]));Substr([Object 2];1;(Length([Object 2])-3)); (Substr([Object 2];1;(Pos([Object 2];Previous([Object 2]))-4))))
But this solution gives me #MultiValue error.
Any help will be apreciated.
bahriye (BOB member since 2010-07-14)