Quando o Excel o impede de classificar, dizendo: “As células mescladas precisam ter tamanho idêntico”, como você encontra as células mescladas?

1

O Excel coloca esta reclamação quando o intervalo de células que você está tentando classificar inclui células mescladas.

Mas se for uma planilha grande, como você rastreia as células mescladas?

    
por hawbsl 04.05.2011 / 15:37

1 resposta

4

Editar > Encontre > Formatar (especificar células mescladas) > Encontre todos.

Ou use uma macro:

Option Explicit

Sub testme()
    Dim myCell As Range
    Dim resp As Long

    For Each myCell In ActiveSheet.UsedRange.Cells
        If myCell.MergeCells Then
            If myCell.Address = myCell.MergeArea(1).Address Then
                resp = MsgBox(prompt:="found: " _
                & myCell.MergeArea.Address & vbLf & _
                "Continue looking", Buttons:=vbYesNo)
                If resp = vbNo Then
                    Exit Sub
                End If
            End If
        End If
    Next myCell
End Sub
    
por 04.05.2011 / 16:04