- Katılım
- 6 Temmuz 2008
- Mesajlar
- 1,875
- Excel Vers. ve Dili
- OFFİCE 2010- TÜRKÇE
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [C2:C65536]) Is Nothing Then Exit Sub
Application.EnableEvents = False
Rows("2:208").Select
With Selection.Interior
.Pattern = xlNone
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Rows(Target.Row).Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 65535
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Application.EnableEven
kolay gelsin arkadaşlar
yukarıdaki gibi bir kodum mevcut bu kod son değişen hücreyi bulup ilgili satırı sarıya boyuyor.
kırmızı ile yazdığım-- rows (target.row)--yerine ne yazarsak sadece değişen hücreyi seçer?
If Intersect(Target, [C2:C65536]) Is Nothing Then Exit Sub
Application.EnableEvents = False
Rows("2:208").Select
With Selection.Interior
.Pattern = xlNone
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Rows(Target.Row).Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 65535
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Application.EnableEven
kolay gelsin arkadaşlar
yukarıdaki gibi bir kodum mevcut bu kod son değişen hücreyi bulup ilgili satırı sarıya boyuyor.
kırmızı ile yazdığım-- rows (target.row)--yerine ne yazarsak sadece değişen hücreyi seçer?
