Merge cells in the same column if they have the same value

sm3117

New Member
Joined
Feb 21, 2017
Messages
26
Hi, good morning to all,

I need to merge adjacent cells that are on the same column whenever they have the same value.

I have tried the following code (as part of a longer code), but this function is not working, it does not break, but it does not make any changes neither.

Code:
Range("CMIII[[#Headers],[Indicador]]").Select
    Range(Selection, Selection.End(xlDown)).Select
    Range(Selection, Selection.End(xlToRight)).Select
    Selection.RowHeight = 25
    
        Dim cnt As Integer
        Dim rng As Range
        Dim str As String
        
        For i = ActiveSheet.UsedRange.Rows.Count To 1 Step -1
        cnt = Cells(i, 1).MergeArea.Count
        Set rng = Range(Cells(i, 2), Cells(i - cnt + 1, 2))
        
        For Each cl In rng
            If Not IsEmpty(cl) Then str = str + vbNewLine + cl
        Next
        If str <> "" Then str = Right(str, Len(str) - 2)
        
        Application.DisplayAlerts = False
        rng.Merge
        rng = str
        Application.DisplayAlerts = True
        
        str = ""
        i = i - cnt + 1
        Next i

I would really appreciate help,

Thanks,
Have a good day!!
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.

Forum statistics

Threads
1,216,520
Messages
6,131,135
Members
449,626
Latest member
Stormythebandit

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