I have this formula which prints numbers from 1-whatever user enters. I need help so when it prints it prints horizontally(at the mo, it does it vertically) , also I have used the step function because i want it to print the next value x many cells away form the previous(the number of cells away will be fixed horizontally, but when i run the code, it prints every other value within the range.
E.g. I want it to print from value 1-5 with the step function it will print 1,3,5. I need it to print 1,2,3,4,5 a cetain amount of cells away.
Sub Add_Site_Summary()
Dim NumToFill As Long
Dim CellCount As Long
NumToFill = InputBox("How many sites all together")
For CellCount = 1 To NumToFill Step 2
Range("B5").Offset(CellCount - 1, 0) = CellCount + 0
Next CellCount
Any help will be much appreciated
Thanks
Bookmarks