DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub tarih()
Dim i As Long, tar1, tar2 As Date, deg As String, sat As Long
Sheets("Sayfa1").Select
Application.ScreenUpdating = False
Sheets("Sayfa2").Range("A1:B65536").ClearContents
sat = 1
For i = 1 To Cells(65536, "A").End(xlUp).Row
deg = Cells(i, "A").Value
tar1 = Left(deg, 10)
tar2 = Right(deg, 10)
Sheets("Sayfa2").Cells(sat, "A").Value = tar1
Sheets("Sayfa2").Cells(sat, "B").Value = tar2
sat = sat + 1
Next
Application.ScreenUpdating = True
MsgBox "İşlem Tamam"
End Sub