Hi Guys,
For reasons I wont bore you with, I am passing all my data upfront as a parameter to my report. This takes the form of a serialized xml object.
Something like: (just an example you understand!)
<MyClass><Name><ListOfThings><Thing><Name>Thing1</Name></Thing><Thing><Name>Thing2</Name></Thing></ListOfThings><MyClass>
I have a subreport that deals with the display of "Things". This is currently in a list, so that it will repeat for each "Thing".
I have a dataset for Things that is defined as:
="<Query>" & "<ElementPath IgnoreNamespaces=""true"">MyClass/ListOfThings/Thing</ElementPath>" & "<XmlData>" & Parameters!XmlData.Value & "</XmlData>" & "</Query>"
How can I pass the string <Thing><Name>Thing1</Name></Thing> to the subreport, and then <Thing><Name>Thing2</Name></Thing>, and there may be many more.
You understand that this is just a simple example, the real data is way more complex!
Many thanks for your help