Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6896915
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:06:14+00:00 2026-05-27T07:06:14+00:00

I have a rather long XML document with subsections under elements called <Pages> .

  • 0

I have a rather long XML document with subsections under elements called <Pages>. Each of these pages contains an element called <NumberOfEntries> with an integer value.

I am trying to show the part of the XML from the <Page> which has the highest number of entries.

I have looked at the fn:max function, but it’s not working for me …

This is what I have tried –

for $x in /Document
where $x fn:max(//NumberOfEntries)
return $x//Page::node()

EDIT

I just worked out this one but it’s returning all the pages – not just the one with the highest number of entries – any suggestions?

for $x in /Document
where max($x//NumberOfEntries)
return ($x//Page)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T07:06:15+00:00Added an answer on May 27, 2026 at 7:06 am

    As max(...) doesn’t return boolean results, where max($x//NumberOfEntries) is equivalent to where exists(max($x//NumberOfEntries)), so it isn’t filtering anything. You want to find the page that has the maximum number of entries, so here’s what I’d do:

    let $pages := /Document//Page,
        $max   := max($pages//NumberOfEntries)
    return $pages[.//NumberOfEntries = $max]
    

    If more than one page has the same number of entries and that’s the maximum, they’re all returned. If you just want one result, you can wrap the last line into (...)[1] to take the first one:

    let $pages := /Document//Page,
        $max   := max($pages//NumberOfEntries)
    return ($pages[.//NumberOfEntries = $max])[1]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a rather long running javascript code which adds a new div element
I have a rather long switch-case statement. Some of the cases are really short
I have a task that takes a rather long time and should run in
I have rather large input XML files that must be converted to a given
I have some rather long (~150 character) django queries. What's the preferred way to
I am planning to convert a rather long shell script I have into an
I have a very odd problem with javascript. My code is rather long so
I have a rather long bit of code I use to count the number
I have a rather long method that initializes my core data. I can think
I have found that writing PHP code within classes can become rather long: $this->parser->parse_syntax($this->get_language_path($this->language),

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.