Bom dia.
Acho que existe alguma forma de atualizar todos de uma vez sem precisar complicar tanto, mas consegui fazer por código, segue:
Sub atualizar()
UltimaLinha = Planilha1.Rows.Count
Debug.Print UltimaLinha
For x = 5 To Planilha1.Range("N" & UltimaLinha).End(xlUp).Row
Planilha1.Cells(x, 14).Select
Planilha1.Cells(x, 14).Value = Planilha1.Cells(x, 14).Value
Next
MsgBox "Concluído! ", vbOKOnly + vbInformation, ""
End Sub
Postado : 02/04/2023 1:52 pm