I've been working on reports using SQL Server Reporting Services and I've come with a problem.
I have a report that contains multiple datasets. Let's say I have those datasets:
- DatasetPotatoes
- DatasetUnicorns
- DatasetJobs
My report is using a XML to get the value of my fields. Let's say my XML is the following :
<XML>
<Jobs>
<string>Job1</string>
<string>Job2</string>
<string>Job3</string>
</Jobs>
<Potatoes>
<id>123</id>
<fieldname>blabla</fieldname>
</Potatoes>
</XML>
I'd like to be able to put in a single textbox all the values of my List(Of String) (so all my <string>
values) are like that : Job1, Job2, Job3.
Here is an example of how my textbox are populated using an expression:
=First(Fields!fieldname.Value, "DatasetPotatoes")
Do you know if it's possible to get all my <string></string>
values? Or a least get an array of my <string></string>
values so I can format it using VB.NET code?