merge duplicate data

Sefty

Board Regular
Joined
Apr 5, 2022
Messages
68
Office Version
  1. 365
Platform
  1. Windows
Book1
BCDE
1Before After
2Sunday Sunday
3Sunday
4Sunday
5Sunday
6MondayMonday
7Monday
8Monday
9FridayFriday
10Friday
11
Sheet1


Hello if i want to merge duplicate data, from before to after is it possible with VBA?
Thanks 🙏
 
Thank you very much, the formula is very helpful for data formatting (y) 🙏
The marked solution has been changed accordingly. In your future questions, please mark the post as the solution that actually answered your question, instead of your feedback message as it will help future readers. No further action is required for this thread.
 
Upvote 0

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
I note you changed the column reference from my suggested code in post #4 from column B to column D. I'm guessing that you didn't have any values in column D before running the code, and that your real intention is like you described in your original post - that is, take unmerged items in column B and merge them into column D? If that is the case, try the following code, which copies items from column B first into column D, then merges like items. If this is not what you wanted, then you'll need to give a much more detailed description of your intended outcome.
VBA Code:
Sub Merge_Same()
    Dim c As Range
    Application.DisplayAlerts = 0
    Sheet1.Range("B2", Cells(Rows.Count, "B").End(xlUp)).Copy Sheet1.Range("D2")
StartMerge:
    For Each c In Sheet1.Range("D2", Cells(Rows.Count, "D").End(xlUp))
        If c = c.Offset(1) And c.Offset(1) <> "" Then
            Sheet1.Range(c, c.Offset(1)).Merge
            GoTo StartMerge
        End If
    Next c
    Application.DisplayAlerts = 1
End Sub

Before:
Book1
BCD
1Before After
2Sunday
3Sunday
4Sunday
5Sunday
6Monday
7Monday
8Monday
9Friday
10Friday
Sheet1


After:
Book1
BCD
1Before After
2Sunday Sunday
3Sunday
4Sunday
5Sunday
6MondayMonday
7Monday
8Monday
9FridayFriday
10Friday
Sheet1
I already know the error, it's been resolved.
But I don't know, if I want to repeat the merge for sheet 2, how about sheet 3? I have tried but it seems there is a missing code. Sorry please help 🙏
VBA Code:
Sub Merge_Nom_PN_PP_KP_Prop()
    Dim c As Range
    Application.DisplayAlerts = 0
StartMerge:
    Sheets("PN 2").Select
    For Each c In Sheets("PN 2").Range("D2", Cells(Rows.Count, "D").End(xlUp))
        If c = c.Offset(1) And c.Offset(1) <> "" Then
            Sheets("PN 2").Range(c, c.Offset(1)).Merge
            GoTo StartMerge
        End If
    Next c
    Application.DisplayAlerts = 1
    
    End With
    
    Sheets("PN 3").Select
    For Each c In Sheets("PN 3").Range("D2", Cells(Rows.Count, "D").End(xlUp))
        If c = c.Offset(1) And c.Offset(1) <> "" Then
            Sheets("PN 3").Range(c, c.Offset(1)).Merge
            GoTo StartMerge
        End If
    Next c
    Application.DisplayAlerts = 1
    
    End With
     
End Sub
 
Upvote 0
If you want to apply this to multiple sheets, try the following code. I'm assuming that on each sheet the data you want to merge is already in column D (starting from D2) based on the code you posted in post #12. If this doesn't do what you want, then I really will need to see your actual file which you can share via Google Drive, Dropbox, or similar file sharing platform.

VBA Code:
Option Explicit
Sub Merge_Nom_PN_PP_KP_Prop()
    Dim ws As Worksheet, c As Range
    Application.DisplayAlerts = 0
    
    For Each ws In Sheets(Array("PN 2", "PN 3"))    '<~~ *** Add as many sheet names here as you need ***
StartMerge:
        For Each c In ws.Range("D2", ws.Cells(Rows.Count, "D").End(xlUp))
            If c = c.Offset(1) And c.Offset(1) <> "" Then
                ws.Range(c, c.Offset(1)).Merge
                GoTo StartMerge
            End If
        Next c
    Next ws
    
    Application.DisplayAlerts = 1
End Sub
 
Upvote 0
Solution
If you want to apply this to multiple sheets, try the following code. I'm assuming that on each sheet the data you want to merge is already in column D (starting from D2) based on the code you posted in post #12. If this doesn't do what you want, then I really will need to see your actual file which you can share via Google Drive, Dropbox, or similar file sharing platform.

VBA Code:
Option Explicit
Sub Merge_Nom_PN_PP_KP_Prop()
    Dim ws As Worksheet, c As Range
    Application.DisplayAlerts = 0
   
    For Each ws In Sheets(Array("PN 2", "PN 3"))    '<~~ *** Add as many sheet names here as you need ***
StartMerge:
        For Each c In ws.Range("D2", ws.Cells(Rows.Count, "D").End(xlUp))
            If c = c.Offset(1) And c.Offset(1) <> "" Then
                ws.Range(c, c.Offset(1)).Merge
                GoTo StartMerge
            End If
        Next c
    Next ws
   
    Application.DisplayAlerts = 1
End Sub
thanks for the help, very helpful in formatting the data.
Thanks for the time and knowledge (y)🙏
 
Upvote 0
If you are interested, here is another way that could require a lot less looping and it merges the whole of each area at once rather than one row at a time.
For the moment, I have assumed that each sheet will have at least one area to merge. If it is possible that there could be no areas to merge on one of the worksheets than the code will need a little more.

VBA Code:
Sub Merge_Values()
  Dim ws As Worksheet
  Dim rA As Range
  
  For Each ws In Sheets(Array("PN 2", "PN 3"))
    With ws.Range("D2", ws.Range("D" & Rows.Count).End(xlUp))
      .Value = .Worksheet.Evaluate("if(" & .Address & "=" & .Offset(-1).Address & ",""""," & .Address & ")")
      For Each rA In .SpecialCells(xlBlanks).Areas
        rA.Offset(-1).Resize(rA.Count + 1).Merge
      Next rA
    End With
  Next ws
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,514
Messages
6,125,273
Members
449,220
Latest member
Excel Master

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