I’m using a report viewer (RDLC file) in a web page. In the dataset, one of the properties is a string array (names AdditionalDetails). In the tablix, I can’t find the correct expression to access the strings in the array. For example, in order
to access the first string in the array I tried the following:
=Fields!AdditionalDetails.Value(0)
But it displays as “#Error” in the report.
How can I access the string in the array? How can I access the strings in Fields!AdditionalDetails.Value?
I also tried with a List(Of String) instead of a string array but the problem stays the same.