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
- baris 1
- baris 2
anyone can help please?
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
anyone can help please?
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)