DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Makro2()
[a1:a200].NumberFormat = "00\.00\.0000"
End Sub
Public Sub Tarih()
Application.ScreenUpdating = False
For i = 1 To [A65536].End(3).Row
If Len(Cells(i, "A")) = 8 Then
Cells(i, "A") = DateSerial(Right(Cells(i, "A"), 4), Mid(Cells(i, "A"), 3, 2), Left(Cells(i, "A"), 2))
ElseIf Len(Cells(i, "A")) = 7 Then
Cells(i, "A") = DateSerial(Right(Cells(i, "A"), 4), Mid(Cells(i, "A"), 2, 2), Left(Cells(i, "A"), 1))
End If
Next i
End Sub