View Single Post
  #2  
Old June 5th, 2010, 12:48 AM posted to microsoft.public.excel.worksheet.functions
Jim Cone[_2_]
external usenet poster
 
Posts: 434
Default Fill in Column with a series of repeating numbers


A1: 1
A2: =IF(MOD(ROW(),12)=1,A1+1,A1)
Fill down
--
Jim Cone
Portland, Oregon USA
( Review of Special Sort add-in: http://www.contextures.com/excel-sort-addin.html )




"mimi"
wrote in message
I am trying to fill in an amortization years column. The first 12 rows are
"1", the next 12 rows are "2", the next twelve rows are "3" and so on. I've
got 360 rows to fill. Any suggestions?