Perhaps this pseudo code will give you some idea
a = Inputbox ' start number
b = Inputbox ' number of cells to "fill"
a1 = a
for i = 1 to b
activecell.Offset(i-0,1).Value = a1
a1 = a1 + 1
Next

Signature
Regards,
Tom Ogilvy
> What I am trying to do is use the data entered in one inputbox with the data
> entered from a 2nd input box. I an trying to make a macro so that the user
[quoted text clipped - 6 lines]
> numbers and the macro will fill to the appropriate number. Any help would be
> great! Thanks
Mike - 28 Sep 2006 20:51 GMT
That worked Great! Thanks so much...I am just playing around with it now to
figure out why the list comes up offset but I think that I should be able to
figure that one out. Thanks again!
> Perhaps this pseudo code will give you some idea
> a = Inputbox ' start number
[quoted text clipped - 16 lines]
> > numbers and the macro will fill to the appropriate number. Any help would be
> > great! Thanks
Tom Ogilvy - 28 Sep 2006 21:51 GMT
Looks like tangled fingers on my part
activecell.Offset(i-0,1).Value = a1
should be
activecell.Offset(i-1,0).Value = a1

Signature
Regards,
Tom Ogilvy
> That worked Great! Thanks so much...I am just playing around with it now to
> figure out why the list comes up offset but I think that I should be able to
[quoted text clipped - 20 lines]
> > > numbers and the macro will fill to the appropriate number. Any help would be
> > > great! Thanks
Mike - 29 Sep 2006 12:37 GMT
Thanks!!
> Looks like tangled fingers on my part
>
[quoted text clipped - 28 lines]
> > > > numbers and the macro will fill to the appropriate number. Any help would be
> > > > great! Thanks