up vote 0 down vote favorite
share [g+] share [fb]

I want to set "Formula" to all cells in certain column whatever the number of rows was.

But i don't want to set this function to first cell "Header" of this column.

How do i make it ?.

link|improve this question

In Excel 2007 this can be done automatically if you convert the range to a list (Ctrl + L). If you enter a formula in the first row (beneath the header) in an otherwise empty column, the formula will be copied to all rows in the list. – Mike Fitzpatrick Jan 27 '10 at 5:26
feedback

2 Answers

up vote 1 down vote accepted

If your header is in cell A1 and your formulas need to start in A2 and go to the end, start by selecting A2, press (and release) "End" then press "Shift+Down Arrow". Now everything from A2 to the end is selected and you can paste your formula. If you have no data in A2-A65535, you will select the entire range. If you have data, this will only select to the end of the list of data.

link|improve this answer
A couple notes: 1) Since he's using Excel 2007, the last row would actually be A1048576. And 2) If you have data in the column but you still want it to go down to row 1048576, after you do the last step here, just press End, hold Shift and press Down Arrow one more time. – T Pops Nov 5 '09 at 17:44
Thank you very much – Wahid Bitar Nov 7 '09 at 16:51
feedback

I think you may have to reword this a little for people to understand exactly what you are after. Are you trying to reference the range of all cells in a column except for the header? Most likely you can do this using an OFFSET with a COUNTA function inside, for example to get all of column A without the header you could use:

=OFFSET($A$1,1,0,COUNTA(A:A),1)

This assumes all the other cells in A have something in up to the end of the data range, no blanks in between.

What function are you trying to point at this range?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.