Tevfik_Kursun
Altın Üye
- Katılım
- 30 Temmuz 2012
- Mesajlar
- 3,902
- Excel Vers. ve Dili
- Office 2016 Pro - Türkçe 64 Bit
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub dd()
Dim alan, hcr As Range
Set alan = Selection.Cells
For Each hcr In alan
If hcr.Interior.Color = 255 Then
For y = alan.Row To alan.Row + Selection.Rows.Count
If Cells(y, hcr.Column).Interior.Color <> 255 And Cells(y, hcr.Column).Interior.Color <> 65535 Then
hcr.Interior.Color = Cells(y, hcr.Column).Interior.Color
GoTo dgr
End If
Next y
End If
dgr:
Next
End Sub