Is there a way to only grab a single instance of an XML node at a higher level than a child node? See XML example below.
<INVOICE>
<TAX_AMT>44.58</TAX_AMT>
<LINE>
<TAX_AMT>22.48</TAX_AMT>
</LINE>
</INVOICE>
I want to get the 22.48 and disregard the 44.48. The XML could have multiple lines as well.