How to sum a column from not the first cell

D

D.A. Cluett

I want to sum all figures in a column -- e.g. sum(d:d) -- but want the top
item to not the the top cell -- e.g. sum(d3:d). Please advise if anyone can
figure out how to do this? I'm stumped.
 
R

RiTSo

D.A. Cluett wrote:

:: I want to sum all figures in a column -- e.g. sum(d:d) -- but want
:: the top item to not the the top cell -- e.g. sum(d3:d). Please
:: advise if anyone can figure out how to do this? I'm stumped.

Well there are 65536 cells in total in the column so you could try
=SUM(D3:D65536)
 
Top