Reputation: 77
I have a report in which I want to display value of 2 engineers in one column.I am using a cube to generate a matrix.
For Example
Customer Engineer Support
Citi ABC
Citi XYZ EFG
I used the below code
=First(Fields!string.Value)+","+ Last(Fields!string.Value)
Then I am getting something like this
Customer Engineer Support
Citi ABC,XYZ EFG,EFG
But I want to display it like this
Customer Engineer Support
Citi ABC,XYZ EFG
How can I display like above?
Upvotes: 0
Views: 4403
Reputation: 36
=IIF(First(Fields!string.Value) = Last(Fields!string.Value), First(Fields!string.Value), First(Fields!string.Value)+","+ Last(Fields!string.Value))
Upvotes: 2