-1

i had one row from database when i view this data on reporting service i get view:

baris 1 baris 2

i want to change view on reporting service to be

  1. baris 1
  2. baris 2

anyone can help please?

Hiten004
  • 2,425
  • 1
  • 22
  • 34

1 Answers1

0

I would use a combination of the Split function with the constant: Constants.vbCrLf. In your scenario the Split might be tricky - there's no obvious delimiter to split on.

This example might get you started:

= "1. " + Split ( Fields!my_column.Value , " " )(0) + " " + Split ( Fields!my_column.Value , " " )(1) + Constants.vbCrLf + "2. " + Split ( Fields!my_column.Value , " " )(2) + " " + Split ( Fields!my_column.Value , " " )(3)

Mike Honey
  • 14,523
  • 1
  • 24
  • 40