This is my XML snippet
<FinancialSummary>
<SummaryDate format="YYYYMMDD">20111231</SummaryDate>
<Revenue currency="EUR">1249164523</Revenue>
</FinancialSummary>
<FinancialSummary>
<SummaryDate format="YYYYMMDD">20101231</SummaryDate>
<Revenue currency="EUR">1242344523</Revenue>
</FinancialSummary>
<FinancialSummary>
<SummaryDate format="YYYYMMDD">20091231</SummaryDate>
<Revenue currency="EUR">324900932</Revenue>
</FinancialSummary>
Im trying to extract the node content from the revenue node within the financialsummary tag with the highest numeric summarydate value.
/FinancialSummary[SummaryDate = '20111231']/Revenue
this xpath returns correct = 1249164523
max(/FinancialSummary/SummaryDate)
this xpath returns correct = 20111231
however when i try to combine both nothing is returned
/FinancialSummary[SummaryDate = max(/FinancialSummary/SummaryDate)]/Revenue
Is there something I am missing? What is the solution to this puzzle?
extra information: I tried contains instead of '=' but no luck with that
/, and there can be only one root to an XML document. Your last expression includes this slash too, meaning there's only one thing it can return, the first and only document root node's Revenue elements, but only if it satisfies your predicate. Likewise, your middle expression seems impossible to return the correct data as well. Are you sure this is the whole context? – Abel Jan 19 at 15:58/), not the outermost element. Thus "root node's Revenue elements" doesn't make sense... The root node's only children are FinancialSummary elements. You apparently mean the outermost element's Revenue element children. – LarsH Jan 19 at 16:26[SummaryDate = max(/FinancialSummary/SummaryDate)]selects something, but there's nothing to select: there's only one root, no choice there. I agree that my wording is ambiguous. I meant to say "the expression finds all Revenue elements that are children of the root node (FinancialSummary) provided that the root node satisfies the predicate". – Abel Jan 19 at 16:54