sorting merged cells

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

my worksheet cannot be sorted because it is saying that it cannot sort merged
cells, how do i find the merged cells bucause i see none
 
Select the whole area then Format, Cells, Alignment and make sure th
Merge celss box is clea
 
try this or just select the cells button (top left of row/columns) and right
click>format>alingment>uncheck merge.

Sub findmerged()
For Each c In Selection
If c.MergeCells = True Then MsgBox c.Address
Next
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top