Hi, I'm trying to parse XML that I'm getting as a response to an API call. The structure of the XML is the following for each row of data:
<Results>
<Properties>
<Property>
<Name>First_Name</Name>
<Value>Phil</Value>
</Property>
<Property>
<Name>Date_of_Application</Name>
<Value>01/01/2000</Value>
</Property>
</Properties>
</Results>
<Results>
<Properties>
<Property>
<Name>First_Name</Name>
<Value>Joe</Value>
</Property>
<Property>
<Name>Date_of_Application</Name>
<Value>01/01/2000</Value>
</Property>
</Properties>
</Results>
Using the XML parse tool with the following settings ...

I'm getting back data that in this format ...
| Name | Value |
| First_Name | Phil |
| Date_Of_Application | 01/01/2000 |
| First_Name | Joe |
| Date_Of_Application | 01/01/2000 |
However what I'm after is data in this format ...
| First_Name | Date_Of_Application |
| Phil | 01/01/2000 |
| Joe | 01/01/2000 |
I've tried stringing together multiple parse XML tools with just about every combination of Child name/values but I'm not able to figure it out. Any suggestions?