
Il codice vba è il semplice:
Range(Selection, Selection.End(xlDown)).Select
Selection.Replace What:=".", Replacement:="/"
|
For Each cell In Range(Selection, Selection.End(xlDown))
cell = CDate(Replace(cell, ".", "/"))
Next |
