Não entendi muito bem o porque da necessidade de preencher TODAS as células da coluna M. Dependendo da versão do Excel utilizada, a macro vai levar algum tempo para ser executada.
Mas segue o código,,,
Public Sub PreencherVazios()
Dim wks As Worksheet
Dim rng As Range
Dim cel As Range
Application.ScreenUpdating = False
Set wks = ThisWorkbook.Worksheets("Plan1")
Set rng = wks.Range("M1:M" & wks.Rows.Count)
For Each cel In rng.Cells
If Len(Trim(cel)) = 0 Then cel = ""
Next cel
Set cel = Nothing
Set rng = Nothing
Set wks = Nothing
Application.ScreenUpdating = True
End Sub
Postado : 07/11/2015 11:43 pm