Looking for some guidance

paulsolar

Well-known Member
Joined
Aug 21, 2013
Messages
689
Office Version
  1. 365
Hi All

I'm looking for a pointer where to start with this problem.

I have two worksheets, sheet1 and sheet2.

Sheet1 contains businesses whose credentials are correct. Column A has the businesses Ref No, Columns B-H contain the businesses name and contact details.

Sheet2 contains the businesses names with an individual row for each of thier employees, the good thing is that Column A has the businesses Ref No.

So for example Sheet2 Column A could have 5 entries with the same number, next to which are 5 employees details in columns B-E.

What I want achieve is in Sheet3 have the businesses details in columns A-H, and below that row list the employees details for that business. Then underneath the last employee row for the previous business have the next business followed by its employees..................

I've been trying to figure out an easy way of doing this without any success.

any suggestions on how to go about it would be greatly appreciated.

Cheers

Paul
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
How about
Code:
Sub CombineData()

   Dim Cl As Range
   Dim i As Long
   Dim Ws1 As Worksheet
   Dim Ws2 As Worksheet
   
Application.ScreenUpdating = False
   Set Ws1 = Sheets("Sheet2")
   Sheets("sheet1").Copy , Sheets(Sheets.Count)
   ActiveSheet.Name = "Combined"
   Set Ws2 = Sheets("Combined")
   With CreateObject("scripting.dictionary")
      For Each Cl In Ws1.Range("A2", Ws1.Range("A" & Rows.Count).End(xlUp))
         If Not .exists(Cl.Value) Then
            .Add Cl.Value, Cl.Resize(, 5)
         Else
            Set .Item(Cl.Value) = Union(.Item(Cl.Value), Cl.Resize(, 5))
         End If
      Next Cl
      For i = Ws2.Range("A" & Rows.Count).End(xlUp).Row To 2 Step -1
         If .exists(Ws2.Range("A" & i).Value) Then
            Rows(i + 1).Resize(.Item(Ws2.Range("A" & i).Value).Rows.Count).Insert
            Ws2.Range("A" & i + 1).Resize(.Item(Ws2.Range("A" & i).Value).Rows.Count, 5).Value = .Item(Ws2.Range("A" & i).Value).Value
         End If
      Next i
   End With
End Sub
 
Last edited:
Upvote 0
Hi Fluff

Many thanks for your reply, if i can get this to work, I'll pray tonight for England to beat Ireland on Saturday. (And thats going some for a Taff)

Could you give me a quick explanation of how this will work please so that I can test it, I cant quite figure out how to implement it

cheers

Paul
 
Upvote 0
OK Fluff, I'm on my knees at this moment (y)

Please dont tell anyone in Wales :)

Worked like a charm,

Thanks again for your assistance, it saved my wife about a 2 days work going through 35000 businesses

Cheers

Paul
 
Upvote 0
if i can get this to work, I'll pray tonight for England to beat Ireland on Saturday. (And thats going some for a Taff)
With the way we're playing at the moment, it will take a bit more than that! :(
We could easily end up 5th.

Code:
Sub CombineData()

         Dim Cl As Range
         Dim i As Long
         Dim Ws1 As Worksheet
         Dim Ws2 As Worksheet
         
1     Application.ScreenUpdating = False
2        Set Ws1 = Sheets("Sheet2")
3        Sheets("sheet1").Copy , Sheets(Sheets.Count)
4        ActiveSheet.Name = "Combined"
5        Set Ws2 = Sheets("Combined")
6        With CreateObject("scripting.dictionary")
7           For Each Cl In Ws1.Range("A2", Ws1.Range("A" & Rows.Count).End(xlUp))
8              If Not .exists(Cl.Value) Then
9                 .Add Cl.Value, Cl.Resize(, 5)
10             Else
11                Set .Item(Cl.Value) = Union(.Item(Cl.Value), Cl.Resize(, 5))
12             End If
13          Next Cl
14          For i = Ws2.Range("A" & Rows.Count).End(xlUp).Row To 2 Step -1
15             If .exists(Ws2.Range("A" & i).Value) Then
16                Rows(i + 1).Resize(.Item(Ws2.Range("A" & i).Value).Rows.Count).Insert
17                Ws2.Range("A" & i + 1).Resize(.Item(Ws2.Range("A" & i).Value).Rows.Count, 5).Value = .Item(Ws2.Range("A" & i).Value).Value
18             End If
19          Next i
20       End With
End Sub
7) loops through Col A on sheet2
8) Checks if the value is already in the dictionary
9) if it's not in the dictionary it adds col A value as the key & the range A:E as the item
11) If the value already exists it adds the new range to the existing range held in the item
14) loops through col A on the newly created sheet "Combined"
15) Checks if the col A value exists in the dictionary
16) If it does, inserts a varying number of new rows below (so if that company has 5 employees it will add 5 new rows)
17) copies the employee details to the new rows

HTH
 
Upvote 0

Forum statistics

Threads
1,215,757
Messages
6,126,695
Members
449,331
Latest member
smckenzie2016

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top