...Target.Row
Set izinsatir = Range("d" & a, "ah" & a)
Range("d" & a, "ah" & a).ClearContents
For Each Rng2 In izinsatir
If Rng2.DisplayFormat.Interior.Color = 255 Then Rng2.Value = "HT"
If Rng2.DisplayFormat.Interior.ColorIndex = 2 Then Rng2.Value = 7.5
If...
...Rng As Range
Set My_Area = Range("A1:Z1000")
My_Area.ClearContents
For Each Rng In My_Area
If Rng.DisplayFormat.Interior.ColorIndex <> xlNone Then
Rng.Value = 0
End If
Next
MsgBox "Renkli hücrelere sıfır yazdırma işlemi...
...aln1 In aln
If Evaluate("yd(" & aln1.Address() & ")") = rd Then KBR = KBR + 1 'belirtilen alanda renk kodunu değerleme
Next aln1
End Function
Private Function yd(ByVal aln As Range) As Double
yd = aln.DisplayFormat.Interior.Color 'Koşullu biçimlendirme renk kodu
End...
Korhan Bey ilginize çok teşekkür ederim. verdiğiniz linkdeki tüm ilgili konuları inceledim. Ama benim yapmak istediğim durumla ilgili bir konu başlığı bulamadım.
Ben formül ile mesela "I59:ab59" aralındaki koşullu biçimlendirme ile renklendirilen hücrelerin rengini başka bir aralıktaki bir...
...Sheets("Liste")
.Range("A2:I" & .Cells(Rows.Count, 1).End(3).Row).ClearContents
For Each huc In rng
If huc.DisplayFormat.Interior.ColorIndex <> xlNone Then
.Cells(sat, "I").Value = huc.Value
.Cells(sat, "A").Resize(, 7).Value =...
...Set Rng = .Range(.Cells(2, Sut), .Cells(Rows.Count, Sut).End(3))
End With
sat = 2
For Each huc In Rng
If huc.DisplayFormat.Interior.ColorIndex <> xlNone Then
Sheets("Liste").Cells(sat, "I").Value = huc.Value
Sheets("Liste").Cells(sat, "a").Value =...
...Set Rng = .Range(.Cells(2, sut), .Cells(Rows.Count, sut).End(3))
End With
sat = 2
For Each huc In Rng
If huc.DisplayFormat.Interior.ColorIndex <> xlNone Then
Sheets("Liste").Cells(sat, "I").Value = huc.Value
sat = sat + 1
End If
Next huc...
Sub test()
Dim huc
For Each huc In ActiveSheet.UsedRange
huc.Interior.Color = huc.DisplayFormat.Interior.Color
Next huc
ActiveSheet.UsedRange.FormatConditions.Delete
End Sub
Merhaba,
DisplayFormat.Interior.ColorIndex komutu 2010 sürümde çalışması gerekir. Bu komut KTF dediğimiz kullanıcı tanımlı fonksiyonlarda çalışmamaktadır.
KTF yerine normal makro kodu ile sonuç alabilirsiniz.
Option Explicit
Sub Count_Cells_Colored_With_Conditional_Formatting()
Dim Rng...
İyi günler iyi çalışmalar.
Ben de aynı sıkıntıyı yaşıyorum. Bunun çözümü nedir acaba. 2010 versiyon kullandığım için DisplayFormat.Interior.ColorIndex çalışmıyor.
...kaydeder.
Hücre aralığını değiştirebilirsiniz.
Sub RenklerKalsınKosulluBicimleriSil()
Dim Rng As Range
For Each Rng In Range(Cells(1, 1), Range("A1").SpecialCells(xlLastCell))
Rng.Interior.Color = Rng.DisplayFormat.Interior.Color
Next Rng
Cells.FormatConditions.Delete
End Sub
...'Koşullu Biçimlendirme renk indeksinin bulunması
Private Function ri(ByVal A As Range) As Double
ri = A.DisplayFormat.Interior.Color
Calculate
End Function
-------------------------------------------
Sub SatinAlma()
Application.ScreenUpdating = False
Sheets("Tutanak").Unprotect...
...KRenk = Evaluate("ri(" & A.Address() & ")")
End Function
Private Function ri(ByVal A As Range) As Double
ri = A.DisplayFormat.Interior.Color
End Function
Access kodları için bakınız:
http://www.excelgurusu.com/bilgisayarda-renk-uzayi-rgb-renk-sistemi/
Dosyanız burada...
...For Each Veri In Range("E9:E" & Son & ",M9:M" & Son)
Select Case Veri.Column
Case 5
If Veri.DisplayFormat.Interior.Color = Range("D2").DisplayFormat.Interior.Color Then
Toplam_E = Toplam_E + Veri.Value
End If...
Sizlere daha iyi bir deneyim sunabilmek icin sitemizde çerez konumlandırmaktayız, web sitemizi kullanmaya devam ettiğinizde çerezler ile toplanan kişisel verileriniz Veri Politikamız / Bilgilendirmelerimizde belirtilen amaçlar ve yöntemlerle mevzuatına uygun olarak kullanılacaktır.