Hi,
in one sheet I have data like:
A1: Audi B1:A3
A2: BMW B2:Z300
A3: Ford B3:Fiesta
A4: Audi B4: A4
A5: Ford B5: Mondeo
in second sheet I have unique value:
A1: Audi
A2: BMW
A3: Ford
Now I want to insert into second sheet in B1, B2... all value from sheet1 for Audi, Ford etc...:
B1: A3, A4
B2: Fiesta, Mondeo
I have just:
could you please help me ?
in one sheet I have data like:
A1: Audi B1:A3
A2: BMW B2:Z300
A3: Ford B3:Fiesta
A4: Audi B4: A4
A5: Ford B5: Mondeo
in second sheet I have unique value:
A1: Audi
A2: BMW
A3: Ford
Now I want to insert into second sheet in B1, B2... all value from sheet1 for Audi, Ford etc...:
B1: A3, A4
B2: Fiesta, Mondeo
I have just:
Code:
Application.ScreenUpdating = False
'sheet with unique id
Dim LIST_WS As Worksheet
Set LIST_WS = Sheets("DATA")
Dim x_rows As Long
x_rows = LIST_WS.Range("B65536").End(xlUp).Row
'sheet with informations
Dim DATA_WS As Worksheet
Set DATA_WS = Sheets("Issues")
Dim x_rows_2 As Long
x_rows_2 = DATA_WS.Range("B65536").End(xlUp).Row
Dim Rng As String
Dim sfullpath As String
Rng = DATA_WS.Range("A2:C" & DATA_WS.Range("A" & Application.Rows.Count).End(xlUp).Row).Address
LIST_WS.Range("D2").Select
Dim i As Integer
For i = 1 To x_rows
Next i
could you please help me ?