I found something that feels like a hack, but it works:
- Using a web browser, edit your
desired list to use “Totals” on at
least one column in your list.
- Open
your desired SharePoint site in
SharePoint Designer.
- In the Folder
List view, find your desired list in
the Lists folder.
- Open
AllItems.aspx (or whatever view you
want to edit).
- In the Web Parts
inspector, Web Parts tab, click the
"Username Gallery" and the Web Part
List below that will display a list
that includes a Content Editor Web
Part (CEWP).
- Drag the CEWP into the
AllItems.aspx (or whatever) view you
have open.
- Save the aspx file.
- Go
to this JQuery web page and copy
whichever script you're interested
in to the clipboard.
- Go to your
SharePoint list using a web browser.
- You'll see a line of text there now,
where you put the CEWP: "To add
content, open the tool pane and then
click Rich Text Editor." Click on
the "open the tool pane" link.
- Click the Source Editor button on the right.
- Paste the
script in the clipboard into the
Source Editor window.
- Change the
"var col = 4; //which column to sum"
line so that the column number is
the one you want to sum.
- Click the
Save button and then the OK button in
the bottom right.
Voila!
Unfortunately, this solution is very brittle. If you make any changes to the page in SharePoint Designer and save the aspx file again, the script code that you put in the CEWP is lost and you have to re-paste it back in again. To make it less brittle, you can just reference the code in a separate file. To do this, remove the code from the CEWP's Source Editor, save the code as a ".js" file in another SharePoint list (e.g., create a new one called "Resources"), copy the URL of that file, and paste the URL into the text box under "To link to a text file, type a URL".