Boa tarde.
Creio que o seguinte deva resolver o problema:
Sub Teste_Macros()
'
' Teste_Macros Macro
' Denilson Roberto de Souza
'
'
Dim w As Worksheet
Dim senha As String
senha = "123"
Set w = Plan4
Dim ulinha As Long
w.Activate
If w.ProtectContents = True Then
w.Unprotect senha
End If
ulinha = w.Cells(Cells.Rows.Count, 1).End(3).Row
For i = 3 To ulinha
w.Cells(i, "E") = w.Cells(i, "B") & w.Cells(i, "c")
Next i
w.Protect senha
End Sub
Resposta útil? Clique na mãozinha ao lado do botão Citar.
Postado : 16/03/2018 9:37 am