Autofill Dilemma

  • Thread starter Thread starter toby83
  • Start date Start date
T

toby83

I would like to autofill 1,2,3,4,5 etc. in a column but I only want
number every 48th row i.e.

1



47 rows inbetween




2

Apologies if this is rather simple, but I am too!:)

Many thanks

Tob
 
modify this to suit. change the 10 to the last one you want and 3 to 48

Sub numbermod()
For i = 1 To 10 Step 3
Cells(i, 1) = i
Next i
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top