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:
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?