Macro to Unmerge Data

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,561
Office Version
  1. 2021
Platform
  1. Windows
I have written code to unmerge data on sheet 2 Col A:M but it does not unmerge the data

Code:
 Sub Unmerge_data ()
    With Sheets(1)
          
         .Range("a1:M" & Rows.Count).End(xlUp).UnMerge
End Sub


It would be appreciated if someone could assist me
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
@howard you need to properly define your range.
If clearing rows of columns A:M then try below.

VBA Code:
Sub Unmerge_data()
    With Sheets(1)
         
         .Range("A1:M" & Rows.Count).UnMerge
    End With
        
End Sub

Incidental , I'm sure, but also, above, you say sheet 2 but uyour code refs Sheet (1) ?
You are missing an End With

Hope that helps.
 
Upvote 0
Hi there. You are not identifying the last row correctly. Try this:
VBA Code:
Sub Unmerge_data()
    With Sheets(1)
        .Range("a1:M" & .Range("A1").SpecialCells(xlCellTypeLastCell).Row).UnMerge
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,496
Messages
6,113,995
Members
448,539
Latest member
alex78

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