DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub rapor()
Dim syf As Worksheet, tarih As Date
Sheets("RAPOR").Select
Range("A3:I65536").ClearContents
sat = 3
Application.ScreenUpdating = False
For Each syf In Worksheets
If syf.Name <> "RAPOR" Then
sonsat = Sheets(syf.Name).Cells(65536, "E").End(xlUp).Row
If sonsat >= 3 Then
For i = 3 To sonsat
tarih = Sheets(syf.Name).Cells(i, "E").Value
If tarih - Date <= 2 Then
adrR = Range(Cells(sat, "A"), Cells(sat, "I")).Address
adr2 = Range(Cells(i, "A"), Cells(i, "I")).Address
Sheets("RAPOR").Range(adrR).Value = Sheets(syf.Name).Range(adr2).Value
sat = sat + 1
End If
Next i
End If
End If
Next
Application.ScreenUpdating = True
MsgBox "RAPOR ÇIKARILDI..!!"
End Sub