- Katılım
- 1 Ağustos 2019
- Mesajlar
- 839
- Excel Vers. ve Dili
-
Türkçe excel 2016
İngilizce excel 2016
- Altın Üyelik Bitiş Tarihi
- 19-10-2021
Kod:
Dim tcno As String
Sub dosyakontrol()
With Application
.Calculation = xlManual
.ScreenUpdating = False
.EnableEvents = False
End With
sonsatir = Cells(Rows.Count, "A").End(3).Row
For i = 2 To sonsatir
tcno = Cells(i, "A").Value
Cells(i, "B").Value = ""
Cells(i, "C").Value = ""
Cells(i, "D").Value = ""
Cells(i, "E").Value = ""
If dosyavarmi("C:\FOTO\*.jpg", tcno) Then Cells(i, "B").Value = "VAR" Else Cells(i, "B").Value = "YOK"
If dosyavarmi("C:\NUFUS\*.pdf", tcno) Then Cells(i, "C").Value = "VAR" Else Cells(i, "C").Value = "YOK"
If dosyavarmi("C:\OGKK_PDF\*.pdf", tcno) Then Cells(i, "D").Value = "VAR" Else Cells(i, "D").Value = "YOK"
If dosyavarmi("C:\SGK YENI\*.pdf", tcno) Then Cells(i, "E").Value = "VAR" Else Cells(i, "E").Value = "YOK"
Next i
With Application
.Calculation = xlAutomatic
.ScreenUpdating = True
.EnableEvents = True
End With
MsgBox "işlem tamam"
End Sub