3

I'm trying to concatenate a particular record into one field to avoid multiple rows for the record. The issue is that a drive may contain multiple shifts in which each shift may be assigned a different vehicle.

Screenshot below shows what is happening: enter image description here

Both records show the same drive, but the two shifts. I'd like to get the vehicles column to concatenate all vehicles into one field (Vehicles).

My attempt at an expression is:

=Fields!ShortDesc.Value & "," & Fields!ShortDesc.Value

Which obviously isn't working. Any suggestions on what to do to get this working correctly?

MISNole
  • 992
  • 1
  • 22
  • 48

1 Answers1

2

Easy solution would be to concat in database layer. See following question and answer. If you need to use SSRS solution, answer is running value function, an example here.

Community
  • 1
  • 1
Atilla Ozgur
  • 14,339
  • 3
  • 49
  • 69