+ Reply to Thread
Results 1 to 3 of 3

Creating a combination list with using 2 lists

Hybrid View

  1. #1
    Registered User
    Join Date
    05-04-2019
    Location
    Iceland
    MS-Off Ver
    2016
    Posts
    15

    Question Creating a combination list with using 2 lists

    Screenshot_1.jpg

    How can I create "Final" list with using "List 1" and "List 2"? I created "Final" list manually, just to show what I want.

  2. #2
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,709

    Re: Creating a combination list with using 2 lists

    Here is a VBA solution
    Option Explicit
    
    Sub NewList()
        Dim s1 As Worksheet, s2 As Worksheet
        Set s1 = Sheets("Sheet1")
        Set s2 = Sheets("Sheet2")
        Dim lrA As Long, lrB As Long, lr2 As Long
        lrA = s1.Range("A" & Rows.Count).End(xlUp).Row
        lrB = s1.Range("B" & Rows.Count).End(xlUp).Row
        Application.ScreenUpdating = False
        Dim i As Long, j As Long
        For i = 2 To lrA
            For j = 2 To lrB
                lr2 = s2.Range("A" & Rows.Count).End(xlUp).Row + 1
                s2.Range("A" & lr2) = s1.Range("A" & i) & s1.Range("B" & j)
            Next j
        Next i
        Application.ScreenUpdating = True
        MsgBox "Process Completed"
    End Sub
    Attached Files Attached Files
    Last edited by alansidman; 07-27-2019 at 11:23 AM.
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  3. #3
    Forum Guru Bo_Ry's Avatar
    Join Date
    09-10-2018
    Location
    Thailand
    MS-Off Ver
    MS 365
    Posts
    7,222

    Re: Creating a combination list with using 2 lists

    Please try at D2

    =IF(ROWS(D$2:D2)>COUNTA(A$2:A$9)*COUNTA(B$2:B$9),"",INDEX($A$2:$A$9,ROUNDUP(ROWS(D$2:D2)/COUNTA($B$2:$B$9),))&INDEX($B$2:$B$9,MOD(ROWS(D$2:D2)-1,COUNTA($B$2:$B$9))+1))
    Attached Files Attached Files

+ 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. Creating Sub-Lists from 1 Primary List
    By SPF29 in forum Excel General
    Replies: 6
    Last Post: 02-19-2016, 03:08 PM
  2. [SOLVED] Picking Different Items Between Two Lists and Creating a New List
    By CWatsonJr in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 04-16-2015, 04:19 PM
  3. Creating dependent lists on the first list
    By jvermillion in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 12-09-2013, 08:21 AM
  4. Creating Smaller Lists from a Big List
    By allpow in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 05-01-2012, 04:53 PM
  5. Replies: 3
    Last Post: 09-02-2010, 03:04 AM
  6. Creating a list of numbers based on two other lists
    By afamia in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-08-2009, 03:29 PM
  7. Lists/drop downs creating more than one sub list?
    By Zhola in forum Excel General
    Replies: 6
    Last Post: 10-31-2007, 01:12 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