Hi guys, i did some basic looping with below codes but it didn't give me the numbers running as my attachment. What should i do to make the number running in below range every time i insert it?
Code:
sub test()
for x=0 to 9
cells(x+1,1)=x+1
next x
end sub