Results 1 to 9 of 9

VBA code to populate a table

Threaded View

  1. #1
    Registered User
    Join Date
    11-24-2009
    Location
    Phoenix, Arizona
    MS-Off Ver
    MS365, ver. 2405
    Posts
    12

    VBA code to populate a table

    We have a complex analysis process which determines a result by altering two variables. The first variable is an integer between 4 and 15, inclusive. The second variable is an integer between 7 and 40, inclusive. We have written a VBA loop which steps through all the variable combinations and ultimately identifies the optimal settings to maximize the result. Here's how:
    For n1 = 4 To 15
        For n2 = 7 To 40
            Range("G3").Value = n1
            Range("M3").Value = n2
            If Range("AD4").Value > nMax Then
                nMax = Range("AD4").Value
                n1Max = n1
                n2Max = n2
            End If
        Next n2
    Next n1
    
    Range("G3").Value = n1Max
    Range("M3").Value = n2Max
    On further study, we have concluded that we need to better understand the implications of the two variables' interaction, not just the point where they produce the biggest "bang." Therefore, we want to build a table of all the results. We need to be able to look at the whole matrix of results defined by a column for each first variable value and a row for each second variable value. This table will show us a "sweet spot" where the intersect of several contiguous rows and columns provide superior, but not always optimal results.

    Unfortunately, this VBA coding is beyond our level of skill. Can anyone assist us?
    Last edited by rylo; 03-09-2010 at 10:02 PM. Reason: Added code tags

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