Hi,
Firstly - sincere apologies for not posting this separately in the first place.
I'd like to transform from Reporting Services XML to eliminate a tag.
The original XML is:
<?xml version="1.0"?>
<Report xmlns="UC203_x0020_Export_x0020_Returning_x0020_Of ficer_x0020_Details_x0020_for_x0020_Advertising" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="UC203_x0020_Export_x0020_Retur ning_x0020_Officer_x0020_Details_x0020_for_x0020_A dvertising http://localhost/reportserver/folder?%2fUC203+Export+Returning+Officer+Details+f or+Advertising&ElectionEventID=dee73101-8b80-4cae-8c15-e6fed571dfa2&ElectorateTypeID=00000001-0001-0001-0001-000000000006&rs%3aFormat=XML&rs%3aShowHide Toggle%3aisnull=True&rc%3aSchema=True" Name="UC203 Export Returning Officer Details for Advertising">
<ReturningOfficers>
<ReturningOfficerDetails_Collection>
<ReturningOfficerDetails>
<Electorate>Ballajura</Electorate>
<RO>Tom Jones</RO>
<Tel>92913336</Tel>
<Mob> </Mob>
<Venue>Ballajura Community College</Venue>
<Address1>Illawarra Crescent South</Address1>
<Address2> </Address2>
<Suburb>BALLAJURA</Suburb>
</ReturningOfficerDetails>
</ReturningOfficerDetails_Collection>
</ReturningOfficers>
</Report>
The ReturningOfficerDetails_Collection and Report tags are to be removed so that the output then becomes:
<?xml version="1.0"?>
<ReturningOfficers>
<ReturningOfficerDetails>
<Electorate>Ballajura</Electorate>
<RO>Tom Jones</RO>
<Tel>92913336</Tel>
<Mob> </Mob>
<Venue>Ballajura Community College</Venue>
<Address1>Illawarra Crescent South</Address1>
<Address2> </Address2>
<Suburb>BALLAJURA</Suburb>
</ReturningOfficerDetails>
</ReturningOfficers>
Thanks