ExcelFilter: How do I display the sum within that column without resulting in a "circular reference" error?
June 29, 2007 10:10 PM
Subscribe
ExcelFilter: How do I display the sum within that column without resulting in a "circular reference" error?
I'm building a spreadsheet to keep track of my paychecks. I'd like to keep track of YTD totals of a column (eg, federal taxes) at the top of that column, and find a formula that I can enter once into the top that will calculate the sum for the rest of the column for as many entries as I choose to make. Simply summing the entire column results in a circular reference error.
In other wods, for the simplified example below, give me a function for [SUM_FEDERAL] (in B1) that will sum the individual values for each cheque without me having to adjust/copy the function for each entry of a new cheque. (I know I could simply do =SUM(B4:B100), and adjust after 100 entries, but I want a solution that both scales and makes it simple to maintain).
| A | B |
|---|
| 1 | YTD | [SUM_FEDERAL] |
|---|
| 2 |
|---|
| 3 | Cheque No.     | Federal |
|---|
| 4 | 01 | 5 |
|---|
| 5 | 02 | 8 |
|---|
| 6 | 03 | 7 |
|---|
I imagine that there is a super simple solution -- after several hours of playing around and searching Google, I've given up and turned to MeFi.
posted by chefscotticus to computers & internet (13 comments total)
Why not make a sum cell way at the bottom of the column (A500 or whatever) then make A1 (=A500)
I must be missing something.
posted by The Deej at 10:17 PM on June 29, 2007