Estou tentando limpar linhas duplicadas. Meus dados estão em uma tabela com filtros aplicados. Eu tentei usar o recurso do Excel para remover duplicatas, mas recebo o seguinte erro.
Cannot complete operation. You are attempting to change a portion of a table row or column in a way that is not allowed. This may occur when attempting to re-arrange cells within a table that affect other table cells in an unexpected way.
Então eu criei uma macro que eu posso selecionar manualmente uma linha, então minha macro irá deletar essa linha. O que eu quero é que a macro mova uma linha para baixo, exclua essa linha e, em seguida, faça novamente. Como posso fazer isso?
Aqui está o que eu tenho.
Sub DeletRow()
'
' DeletRow Macro
Selection.Delete Shift:=xlUp
End Sub
Sub moveselection()
End Sub