1

im using a visual studio expression

=parameter!site.label(0)

the user can select all/ multiple values for this parameter but the parameter is only showing the first one

say user selected all (birm,londn,leeds) the field should say birm, londn,leeds but it only says birm

Pedram
  • 6,256
  • 10
  • 65
  • 87
Cladback
  • 157
  • 1
  • 1
  • 9

1 Answers1

0

If you want to display multi parameter selections then do this

=Join(Parameters!xxxxxxx.Value,",")

Anup Agrawal
  • 6,551
  • 1
  • 26
  • 32
MiguelH
  • 1,415
  • 1
  • 18
  • 32