Thanks for that really prompt reply I appreciate it, seriously.
Anyways, I deal mainly with just HTML and CSS, but for this project I'm doing now needs me to branch out to a little more complicated and different things.
So, I'm still having problems...
------------------
The XML
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Edited by XMLSpy® -->
<data>
<transaction>
<transaction_details>
<name>Nickie</name>
<number>5</number>
</transaction_details>
</transaction>
<transaction>
<transaction_details>
<name>Chris</name>
<number>2</number>
</transaction_details>
</transaction>
<transaction>
<transaction_details>
<name>Nickie</name>
<number>5</number>
</transaction_details>
</transaction>
</data>
----------------------
The XSLT
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Edited by XMLSpy® -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>RabbitPack.com</h2>
<table border="2">
<tr bgcolor="#3acd32">
<th>Nickie Total</th>
<th>Chris Total</th>
</tr>
<xsl:for-each select="data/transaction/transaction_details">
<tr>
<td><xsl:value-of select="sum(data/transaction/transaction_details[name='Nickie']/number)"/></td>
<td><xsl:value-of select="sum(data/transaction/transaction_details[name= 'Chris']/number)"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
------------------------------
The Output: As a table
Nickie Total____Chris Total
0_________________0
0_________________0
0_________________0
---------------------------------
Okay, my XSLT is probably all over the place

. I really just want to be able to add up and distinguish the total for each one Nickie and Chris. Help?