+ Reply to Thread
Results 1 to 3 of 3

Help Auto Fill Table with VBA (quite urgent)

Hybrid View

  1. #1
    Registered User
    Join Date
    04-27-2012
    Location
    Canberra
    MS-Off Ver
    Excel 2010
    Posts
    19

    Help Auto Fill Table with VBA (quite urgent)

    Hi guys

    I'm new to Excel VBA so go soft on me yea?

    I currently have a table on a a worksheet, and its quite large, but the cells can be filled in based on a predictable pattern, based on other data in the sheet

    I have solved that pattern, as I got the first column to fill out nicely. The trouble is I cannot get it to continue to the second column.

    heres how my code looks very simply

    row = starting row number
    col = starting row number

    while col < the column after the table ends (determined by a short formula)

    while row < the row after table ends (determined by short formula)

    (calculation formula here, that calculates data and fills the table... should be irrelevant to the issue)

    row = row + 1

    wend

    col = col + 1 <------ when i use the F8 thing here, it seems that the program does go to this step but doesn't loop back although the value of col is still less then the column after table ends

    wend

    Its really bugging me and I need it solved quite urgently

    thanks so much in advance!

  2. #2
    Registered User
    Join Date
    04-27-2012
    Location
    Canberra
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: Help Auto Fill Table with VBA (quite urgent)

    fyi the row = row + 1 part works as well, as the first column was filled because of that loop

    i have also tried using a separate function to do the row filling, so

    while col < the column after the table ends (determined by a short formula)

    call row filler

    col = col + 1 <------

    wend

    but the same issue arises

  3. #3
    Registered User
    Join Date
    04-27-2012
    Location
    Canberra
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: Help Auto Fill Table with VBA (quite urgent)

    solved it sorry, forgot to reset row

    damn it wasted 2 hours ...

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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