Caso necessite deletar aquelas planilhas com milhares de linhas em branco poderá usar a funcionalidade abaixo (método primitivo, mais funcional).
Function EliminateThousandBlankLines(StarLine as Long)' Author: André Luiz Bernardes.' Date: 05.02.2009[/color]Let nRow = StartLineDo While ActiveSheet.Cells(nRow, 1) <> ""If ActiveSheet.Cells(nRow, 1).Value <> strUserName ThenActiveSheet.Rows(nRow).EntireRow.DeleteElseLet nRow = nRow + 1End IfLoopEnd Function
Nenhum comentário:
Postar um comentário