I have an input box on a loop to enter names, as i have over 200 names to enter on a weekly basis
how can i get the macro to move down a cell for each entry from the input box
this is what i have so far
sub rota()
RO = 1
START:
ent = ("enter name for rota e1a0")
ent = ent & RO
E1A = InputBox(ent, "ENTER NAMES")
If E1A = "QUIT" Then Exit Sub
RO = RO + 1
Worksheets(1).Range("b5").Value = E1A
GoTo START
End Sub
so first time input is for rota e1a01
second time input is for rota e1a02
and so on up to 242
rota numbers from e1a01 to e1a242 are in coloum A names from input box need to be in coloum B
so its the ("b5") in Worksheets(1).Range("b5").Value = E1A that i need to increase each time
Well i understand what i mean
This post has been edited by discarnet: 12 May 2006 - 01:55 PM



Help
Back to top








