I have 10000 rows and I need to number every 99th row. How can I do this. Thank you, Brian
Jul 6th 2010 #1 I have 10000 rows and I need to number every 99th row. How can I do this. Thank you, Brian
Jul 6th 2010 #2 Re: Number every 99th cellTry something like this... Code Sub Test99() Dim lngLoop As Long For lngLoop = 99 To 10000 Step 99 Cells(lngLoop, 1).Value = lngLoop / 99 Next lngLoop = Empty End Sub Display More
Jul 6th 2010 #3 Re: Number every 99th cellThank you, yet this is way above what I am familiar with. Is there a more simplified way.
Jul 6th 2010 #4 Re: Number every Nth rowYou didn't specify how the rows were to be numbered, so we assume row number.Try this formula, copied down: =IF(MOD(ROW(),99)=0,ROW(),"")