+ Reply to Thread
Results 1 to 4 of 4

AutoFill a Range

Hybrid View

  1. #1
    Steve C
    Guest

    AutoFill a Range

    I have an Inputbox that asks for the number of couples attending an event.
    If 50 is the value (stored in the variable NoCouples), and cell A1 already
    contains "Couple01", I would like cell A1 to be autofilled down as follows:

    Couple01
    Couple02
    Couple03
    ..
    ..
    ..
    Couple50

    Recording a macro that does this gives me the following line of code:
    Selection.Autofill Destination:=Range("A1:A50"), Type:=xlFillDefault

    How do I word my code to substitute NoCouples for A50? I've tried the
    following to no avail:
    Selection.Autofill Destination:=Range("A1:A + NoCouples"),
    Type:=xlFillDefault

    Thanks!

    Steve C

  2. #2
    bpeltzer
    Guest

    RE: AutoFill a Range

    Take the NoCouples outside the quotes to have VB replace the string with the
    value:
    Selection.Autofill Destination:=Range("A1:A" & NoCouples)


    "Steve C" wrote:

    > I have an Inputbox that asks for the number of couples attending an event.
    > If 50 is the value (stored in the variable NoCouples), and cell A1 already
    > contains "Couple01", I would like cell A1 to be autofilled down as follows:
    >
    > Couple01
    > Couple02
    > Couple03
    > .
    > .
    > .
    > Couple50
    >
    > Recording a macro that does this gives me the following line of code:
    > Selection.Autofill Destination:=Range("A1:A50"), Type:=xlFillDefault
    >
    > How do I word my code to substitute NoCouples for A50? I've tried the
    > following to no avail:
    > Selection.Autofill Destination:=Range("A1:A + NoCouples"),
    > Type:=xlFillDefault
    >
    > Thanks!
    >
    > Steve C


  3. #3
    Jef Gorbach
    Guest

    Re: AutoFill a Range


    try this:
    Selection.Autofill Destination:=Range("A1:A" & NoCouples),
    Type:=xlFillDefault

    "Steve C" <SteveC@discussions.microsoft.com> wrote in message
    news:DB1DFAA4-05DF-4E3A-B2A1-D47E846ACE37@microsoft.com...
    > I have an Inputbox that asks for the number of couples attending an event.
    > If 50 is the value (stored in the variable NoCouples), and cell A1 already
    > contains "Couple01", I would like cell A1 to be autofilled down as

    follows:
    >
    > Couple01
    > Couple02
    > Couple03
    > .
    > .
    > .
    > Couple50
    >
    > Recording a macro that does this gives me the following line of code:
    > Selection.Autofill Destination:=Range("A1:A50"),

    Type:=xlFillDefault
    >
    > How do I word my code to substitute NoCouples for A50? I've tried the
    > following to no avail:
    > Selection.Autofill Destination:=Range("A1:A + NoCouples"),
    > Type:=xlFillDefault
    >
    > Thanks!
    >
    > Steve C




  4. #4
    Steve C
    Guest

    Re: AutoFill a Range

    Thank you both!

    "Jef Gorbach" wrote:

    >
    > try this:
    > Selection.Autofill Destination:=Range("A1:A" & NoCouples),
    > Type:=xlFillDefault
    >
    > "Steve C" <SteveC@discussions.microsoft.com> wrote in message
    > news:DB1DFAA4-05DF-4E3A-B2A1-D47E846ACE37@microsoft.com...
    > > I have an Inputbox that asks for the number of couples attending an event.
    > > If 50 is the value (stored in the variable NoCouples), and cell A1 already
    > > contains "Couple01", I would like cell A1 to be autofilled down as

    > follows:
    > >
    > > Couple01
    > > Couple02
    > > Couple03
    > > .
    > > .
    > > .
    > > Couple50
    > >
    > > Recording a macro that does this gives me the following line of code:
    > > Selection.Autofill Destination:=Range("A1:A50"),

    > Type:=xlFillDefault
    > >
    > > How do I word my code to substitute NoCouples for A50? I've tried the
    > > following to no avail:
    > > Selection.Autofill Destination:=Range("A1:A + NoCouples"),
    > > Type:=xlFillDefault
    > >
    > > Thanks!
    > >
    > > Steve C

    >
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1