+ Reply to Thread
Results 1 to 2 of 2

Macro Creating Lists From Table

  1. #1
    Registered User
    Join Date
    05-06-2014
    Location
    Australia
    MS-Off Ver
    Excel 2010
    Posts
    1

    Macro Creating Lists From Table

    I am trying to write a macro in order to create lists from a table of values. Please refer to the attached spreadsheet.

    The my table has two columns, 'Customer' and 'Job Number' in which there are multiple job numbers for each 'Customer' as shown on sheet1.

    I want to be able to create a list of each of the Job Numbers for each of the Customers to uses else where in my project these lists will be used for dynamic drop-down boxes. I want to use a VBA macro to do this.

    My initially thoughts were to use a for loop with copy and paste to arrange the data as shown on sheet4 and then name the lists following this. My macro pastes the values onto sheet 3.

    Here is my attempt of such a code.

    Sub Test()
    Dim i As Integer 'Row Counter
    Dim j As Integer 'Column Counter

    For j = 2 To Worksheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Row
    For i = 2 To Worksheets("Sheet1").Range("A" & Rows.Count).End(xlUp).Row
    If Worksheets("Sheet1").Range("A" & i).Value = Worksheets("Sheet2").Range("A" & j).Value Then
    Worksheets("Sheet1").Range("B" & i).Copy
    Worksheets("Sheet3").Cells(i, j).PasteSpecial
    End If
    Next i
    Next j

    End Sub

    Job Number Lists.xlsm

  2. #2
    Forum Expert Tinbendr's Avatar
    Join Date
    06-26-2012
    Location
    USA
    MS-Off Ver
    Office 2010
    Posts
    2,138

    Re: Macro Creating Lists From Table

    Welcome to the board!

    Please put all code in code tags.

    Something like this?
    Attached Files Attached Files
    David
    (*) Reputation points appreciated.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Creating Lists based on values in a table.
    By V1gilante in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 02-17-2014, 01:30 AM
  2. Dependent drop down lists without creating unique named lists
    By pajordan in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-11-2013, 12:20 PM
  3. Creating automatic/dynamic drop down lists from a table with multiple variables
    By bobby.bobby in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-09-2013, 09:55 AM
  4. Macro for creating multiple lists
    By bell123 in forum Excel Programming / VBA / Macros
    Replies: 16
    Last Post: 03-04-2011, 05:01 PM
  5. Replies: 0
    Last Post: 12-20-2010, 04:31 PM

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