Uma família de softwares de planilhas da Microsoft com ferramentas para analisar, criar gráficos e comunicar dados.
Olá,
você pode usar algo assim:
Dim myCell As Range
Dim rng As Range
Set rng = Range("A2:A15") 'ponha o seu intervalo aqui
For Each myCell In rng.Cells
If Len(myCell.Text) > 3 Then
If Mid(myCell.Text, Len(myCell.Text) - 2, 1) = "." Then
myCell.Value = CCur(Left(myCell.Text, Len(myCell.Text) - 3) & "," & Right(myCell.Text, 2))
myCell.NumberFormat = "#,##0.00"
End If
End If
Next myCell