Calculate Sum of Values with XML
Posted: Wed Oct 02, 2024 8:38 am
HI Guys
I'm looking at a way to Calculate the Sum of Values with an XML
XML Below, I need the Sum of all the <No-Up> should come out at 15
Any ideas?
<root>
<record>
<UKG-Product-Code>107033-0-1</UKG-Product-Code>
<Card-Quantity>3000</Card-Quantity>
<Material>BRAMPTONSTUC-280-FSC</Material>
<Prnt>CC 3K 4/1</Prnt>
<No-Up>1</No-Up>
<Print-Qty>3250</Print-Qty>
</record>
<record>
<UKG-Product-Code>117706-0-1</UKG-Product-Code>
<Card-Quantity>4500</Card-Quantity>
<Material>BRAMPTONSTUC-280-FSC</Material>
<Prnt>CC 3K 4/1</Prnt>
<No-Up>2</No-Up>
<Print-Qty>3250</Print-Qty>
</record>
<record>
<UKG-Product-Code>558465-0-1</UKG-Product-Code>
<Card-Quantity>7500</Card-Quantity>
<Material>BRAMPTONSTUC-280-FSC</Material>
<Prnt>CC 3K 4/4</Prnt>
<No-Up>3</No-Up>
<Print-Qty>3250</Print-Qty>
</record>
<record>
<UKG-Product-Code>558468-0-1</UKG-Product-Code>
<Card-Quantity>24000</Card-Quantity>
<Material>BRAMPTONSTUC-280-FSC</Material>
<Prnt>CC 3K 4/4</Prnt>
<No-Up>8</No-Up>
<Print-Qty>3250</Print-Qty>
</record>
<record>
<UKG-Product-Code>567641-0-1</UKG-Product-Code>
<Card-Quantity>3000</Card-Quantity>
<Material>BRAMPTONSTUC-280-FSC</Material>
<Prnt>CC 3K 4/4</Prnt>
<No-Up>1</No-Up>
<Print-Qty>3250</Print-Qty>
<Spot-Colour>PMS 811</Spot-Colour>
</record>
</root>
I'm looking at a way to Calculate the Sum of Values with an XML
XML Below, I need the Sum of all the <No-Up> should come out at 15
Any ideas?
<root>
<record>
<UKG-Product-Code>107033-0-1</UKG-Product-Code>
<Card-Quantity>3000</Card-Quantity>
<Material>BRAMPTONSTUC-280-FSC</Material>
<Prnt>CC 3K 4/1</Prnt>
<No-Up>1</No-Up>
<Print-Qty>3250</Print-Qty>
</record>
<record>
<UKG-Product-Code>117706-0-1</UKG-Product-Code>
<Card-Quantity>4500</Card-Quantity>
<Material>BRAMPTONSTUC-280-FSC</Material>
<Prnt>CC 3K 4/1</Prnt>
<No-Up>2</No-Up>
<Print-Qty>3250</Print-Qty>
</record>
<record>
<UKG-Product-Code>558465-0-1</UKG-Product-Code>
<Card-Quantity>7500</Card-Quantity>
<Material>BRAMPTONSTUC-280-FSC</Material>
<Prnt>CC 3K 4/4</Prnt>
<No-Up>3</No-Up>
<Print-Qty>3250</Print-Qty>
</record>
<record>
<UKG-Product-Code>558468-0-1</UKG-Product-Code>
<Card-Quantity>24000</Card-Quantity>
<Material>BRAMPTONSTUC-280-FSC</Material>
<Prnt>CC 3K 4/4</Prnt>
<No-Up>8</No-Up>
<Print-Qty>3250</Print-Qty>
</record>
<record>
<UKG-Product-Code>567641-0-1</UKG-Product-Code>
<Card-Quantity>3000</Card-Quantity>
<Material>BRAMPTONSTUC-280-FSC</Material>
<Prnt>CC 3K 4/4</Prnt>
<No-Up>1</No-Up>
<Print-Qty>3250</Print-Qty>
<Spot-Colour>PMS 811</Spot-Colour>
</record>
</root>