Private
Num
As
String
=
""
tempstr
Function
AggregateString(Group as
, Val as
)
If
Group = Num
Then
tempstr = tempstr +
", "
+ Val
Else
Num = Group tempstr = Val
End
Return
tempStr
Then, in the cell where the aggregated string will appear I added a formula similar to the below. I have modified it to reflect your fields:
=IIf(IsNothing(Fields!Grade.Value),
,RunningValue(Code.AggregateString
(Fields!GroupUniqueID.Value,
CStr
(Fields!Grade.Value)),Max,
"GroupScope"
))
SathyanarrayananS edited Revision 3. Comment: Formatted code block
Congratulations on winning another medal for this one! blogs.technet.com/.../technet-guru-awards-june-2013.aspx