Autofill with Named Ranges

H

headly

Say you've got columns of data, January-December, and name each column with
the month; Now I autosum under January, replace the cell reference with the
named range, and drag the autofill handle through the December column.
Instead of adjusting with the correct named ranges for each month, I get
January in every cell. What am I missing? TIA.
 
J

Jim May

Range Names usually (By Default) have Absolute Address assigned them;
That's why January is repeating on you.
HTH,
Jim
 
B

Biff

I get January in every cell. What am I missing?

Because the named range January is ABSOLUTE.

If you have the month names as column headers in A1:J1 and each of these
columns is a named range of the month:

=SUM(INDIRECT(A1))

Biff
 
Top