DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Range("A2:Y2").Interior.Color = xlNone
If Cells(1, 1).Interior.ColorIndex = 3 Then
Range("A2:Y2").Interior.ColorIndex = 3
Else: Range("A2:Y2").Interior.Color = xlNone
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Range("[B][COLOR="blue"]A2:Z2[/COLOR][/B]").Interior.Color = Range("[B][COLOR="Red"]A1[/COLOR][/B]").Interior.Color
End Sub
[B][SIZE="2"]Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)[/SIZE][/B]
If Intersect(Target, Range("A:A")) Is Nothing Then Exit Sub
If ActiveCell.Column <> 1 Then Exit Sub
Cells(Target.Row, 27) = ""
[B][SIZE="2"]End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)[/SIZE][/B]
If Intersect(Target, Range("A:A")) Is Nothing Then Exit Sub
If ActiveCell.Column <> 1 Then Exit Sub
Cells(Target.Row, 27) = 1
[B][SIZE="2"]End Sub[/SIZE][/B]
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
[COLOR="Red"]Application.EnableEvents = False
Application.ScreenUpdating = False
Application.Calculation = xlManual[/COLOR]
For s = 2 To [b65536].End(xlUp).Row
If renk(Range("a" & s)) = renk(Range("a" & s)) Then
Range("a" & s & ":y" & s).Interior.ColorIndex = renk(Range("a" & s))
End If
Next
[COLOR="red"]Application.Calculation = xlAutomatic
Application.ScreenUpdating = True
Application.EnableEvents = True[/COLOR]
End Sub