koşullu biçimlendirme ve tek bir sayfada toplama

Örnek bir dosya yollamanız ve örnek dosyada açıklayıcı bilgiler vermeniz sorunuza cevap almanızı hızlandıracaktır.:cool:
 
Merhaba.
Bir tane RAPOR sayfası oluşturdum.
O sayfada butona basarak rapor alabilirsiniz.
Ayrıca amortisör imalatı sayfasına koşullu biimlendirme yaptım diğer syfsların koşullu biçimlendirmelerini size bıraktım.
Ekli dosyayı inceleyiniz.:cool:
Dosyayı güncelledim.:cool:
Kod:
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 &#199;IKARILDI..!!"
End Sub
 
Son düzenleme:
&#214;zel mesajdan belirti&#287;iniz &#351;ekilde dosyay&#305; g&#252;nceledim.
&#214;nceki mesaj&#305;mdan indirebilirsiniz.:cool:
 
Son düzenleme:
Geri
Üst