- Katılım
- 11 Nisan 2007
- Mesajlar
- 125
- Excel Vers. ve Dili
-
excel=2016
türkçe
- Altın Üyelik Bitiş Tarihi
- 01-07-2024
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Range("H2:H" & sonsat) = "=IF(D2="""","""",IF(G2=D2,""TAHSİL EDİLDİ"",""ÖDEYECEK""))"
With Range("H2:H" & sonsat)
.Value = .Value
End With
Sub Macro1()
'
' Macro1 Macro
'
Dim sonsat As Long
sonsat = ActiveSheet.Range("A1048576").End(xlUp).Row
'
Range("H2:H" & sonsat) = "=IF(D2="""","""",IF(G2=D2,""TAHSİL EDİLDİ"",""ÖDEYECEK""))"
Columns("H:H").FormatConditions.Delete
Columns("H:H").FormatConditions.Add Type:=xlCellValue, Operator:=xlEqual, _
Formula1:="=""ÖDEYECEK"""
Columns("H:H").FormatConditions(Columns("H:H").FormatConditions.Count).SetFirstPriority
With Columns("H:H").FormatConditions(1).Interior
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent2
.TintAndShade = 0.599963377788629
End With
Columns("H:H").FormatConditions(1).StopIfTrue = False
Range("H1").Select
End Sub