Hi all, I'm new to .net so apologies now if i'm bein thick. I want to add a sum total of a column in a repeater table, I was wondering if there's any built in functionality to achieve this? Here's my repeater code (uses a datareader in the code behind file): <asp:repeater id="Repeater1" runat="server"><headertemplate><table width="100%" cellspacing="1" cellpadding="3"><tr style="background-color:#ddc"><th> APP</th> <th> URL/Title</th> <th> Clicks</th> </tr> </headertemplate> <itemtemplate> <tr style="background-color:#efefef"> <td> <%# DataBinder.Eval(Container.DataItem, "APPLICATION") %> </td> <td><a href='<%# DataBinder.Eval(Container.DataItem, "URL") %>' target=_blank> <%# DataBinder.Eval(Container.DataItem, "TITLE") %> </a> </td> <td align="right"><%# DataBinder.Eval(Container.DataItem, "NUM_CLICKS") %></td> </tr> </itemtemplate> <footertemplate> <tr style="background-color:grey"> <td colspan="3" align="right"> <b>Total Click Throughs: (need to add total here)</b> </td> </tr> </TABLE> </footertemplate> </asp:repeater> any help is really appreciated,thanks,Denise