G Guest Oct 5, 2004 #1 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
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
A Alex Delamain Oct 5, 2004 #2 Select the whole area then Format, Cells, Alignment and make sure th Merge celss box is clea
D Don Guillett Oct 5, 2004 #3 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
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