DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sorunuzdan pek fazla birşey anlamadım ama, sanırım aşağıdaki linkin 1.mesajında yerSevgili Arkadaşlar ve özellikle leventm ve ripek eserinize bir el atsanız diyorum
Buformüllere ilaveten ben birde renklendirilmiş satırda bulunduğum hücreyide farklı bir renk ile görmek istiyorum şimdiden teşekkürler
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
On Error Resume Next
If Application.CutCopyMode = xlCopy Then Exit Sub
If Application.CutCopyMode = xlCut Then Exit Sub
Cells.FormatConditions.Delete
If Intersect(ActiveCell, [B7:G27]) Is Nothing Then Exit Sub
Range(Cells(ActiveCell.Row, 2), Cells(ActiveCell.Row, 7)).FormatConditions.Add Type:=xlExpression, Formula1:=1
Range(Cells(ActiveCell.Row, 2), Cells(ActiveCell.Row, 7)).FormatConditions(1).Interior.ColorIndex = 36
Range(Cells(ActiveCell.Row, 2), Cells(ActiveCell.Row, 7)).FormatConditions(1).Font.Bold = True
Range(Cells(ActiveCell.Row, 2), Cells(ActiveCell.Row, 7)).FormatConditions(1).Font.ColorIndex = 0
ActiveCell.FormatConditions.Add Type:=xlExpression, Formula1:=1
ActiveCell.FormatConditions(1).Interior.ColorIndex = 14
ActiveCell.FormatConditions(1).Font.ColorIndex = 3
End Sub