View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default how fill formular?

Try this...

Assume you want the results to appear starting in cell C1.

Enter this formula in C1 and copy down to C21 ( "till about =12*20" ):

=12*(ROWS(C$1:C1)-1)

--
Biff
Microsoft Excel MVP


"Ian Elliott" wrote in message
...
Thanks for any help.
I would like to have a series of rows with formulas:
=12*0
=12*1
=12*2
till about =12*20
I could do this by hand, and it would only take a couple of minutes, but
is
there a way to do by automation?
I know about the EditFillSeries, but this would only show the values,
not
the formula behind it, and I want the next user (or me, if I look at it in
the future) to understand why it is. Of course, I could do:
=12*A1
=12*A2
etc
where A1 has 0, A2 has 1, but I don't want to have to reference another
cell
if necessary.
Thanks again.