Merge cell info with conditional formatting?

seglaren

New Member
Joined
Jun 6, 2011
Messages
6
Hi all

I am working on a big spreadsheet and got a bit stuck. I would appreciate some help from you.

I'd like to attach a spreadsheet - how do I do that?

Basically, I have a list of clients that receive different reports. Column A shows the recipient name, column B shows the report ID.
So, I would like to in cell A1 show all recipients separated by semi colon and cell B1 the report ID.

Example
Mary 123
Joe 123
Mark 432
Peter 765


The above should become:
Mary; Joe 123
Mark 432
Peter 765

Thanks very much in advance!!
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Code:
Sub Merge_IDs()

    Dim IDs As Range, ID As Range, Found As Range, Lastrow As Long
    
    Application.ScreenUpdating = False
    Rows(1).Insert
    Lastrow = Range("B" & Rows.Count).End(xlUp).Row
    Range("B1:B" & Lastrow).AdvancedFilter Action:=xlFilterInPlace, Unique:=True
    Set IDs = Range("B2:B" & Lastrow).SpecialCells(xlCellTypeVisible)
    If ActiveSheet.FilterMode Then ActiveSheet.ShowAllData
    
    For Each ID In IDs
        If Not IsEmpty(ID) Then
            Set Found = Range("B:B").Find(ID.Value, ID, xlValues, xlWhole, xlByRows, xlNext, False)
            Do While Found.Address <> ID.Address
                ID.Offset(, -1).Value = ID.Offset(, -1).Value & "; " & Found.Offset(, -1).Value
                Found.Offset(, -1).Resize(, 2).Delete Shift:=xlShiftUp
                Set Found = Range("B:B").Find(ID.Value, ID)
            Loop
        End If
    Next ID
    
    Rows(1).Delete
    Columns("A").ColumnWidth = 100
    Columns("A").Columns.AutoFit
    Application.ScreenUpdating = True
    
End Sub
 
Upvote 0
  • Alt+F11 to open the VBA macro editor
  • Select Insert\ Module from the VBA menu
  • Paste the code in the edit window.

Back in Excel, run the macro Merge_IDs (Alt+F8)
Test it 1st on a copy of your data.
 
Upvote 0

Forum statistics

Threads
1,215,747
Messages
6,126,652
Members
449,326
Latest member
asp123

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