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 846191
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T06:34:30+00:00 2026-05-15T06:34:30+00:00

I have a directory with XML files. I quickly want to go through them

  • 0

I have a directory with XML files. I quickly want to go through them and sum upp the value stored in one attribute. I have figured out how to fidn the nodes I am interested in.

For example:

(Select-Xml -Path .\*.xml -XPath "//*[@Attribue = 'valueImlookingfor']").Count

This command gives me the count of elements in all of the XML files in the current directory which has the value “valueImlookingfor” in the “Attribue”.

I want to sum up all the values of the “Attribute”, not count them. What would be the best way to do this in PowerShell? I am new to PowerShell so this may be trivial but un-known to me…

All tips are much appreciated 🙂

  • 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-15T06:34:31+00:00Added an answer on May 15, 2026 at 6:34 am
    $total = 0; select-xml -path .\*.xml -xpath "//*/@Attribute" | foreach { $total += [int] $_.node.value }; $total
    

    Breakdown:

    • $total = 0 — we’re going to sum into this variable.
    • select-xml -path .\*.xml -xpath ... — return a collection of all the XML nodes matching the given XPath expression in any of the *.xml files in the current folder.
    • //*/@Attribute — return all the attribute nodes in any element, anywhere in the XML tree.
    • | foreach { ... } — pass (‘pipe’) the collection returned by select-xml to the foreach cmdlet. foreach executes a given code segment on each element in the collection. The collection element is accessed via $_.
    • $total += [int] $_.node.value — add to $total the value of the current attribute, converted from a string to an integer.
    • ; $total — finally, return the value of $total. As this isn’t assigned anywhere, the value is written to the console.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a directory with about 4500 XML (HTML5) files, and I want to
I have a directory of XML files... for example: result.xml result2.xml result3.xml resultNth.xml (because
I have a directory full (~10 3 , 10 4 ) of XML files
I have XML files in a directory that I wish to get over to
I have a relative path (e.g. foo/bar/baz/quux.xml) and I want to pop a directory
I have a directory of very large XML files with a structure as this:
I have a Ruby program that zips a directory tree of XML files using
I have two XML files located in res/xml/. One file is a normal XML
I have some xml files, which are used in my application. They are stored
I have a directory of large xml files with the following setup: <io:InfoObjects xmlns:crole="http://enterprise.businessobjects.com/3.0/customrole"

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.