DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Workbook_SheetActivate(ByVal Sh As Object)
If [D2] > 0 Then
ActiveSheet.Tab.Color = vbGreen
Else
ActiveSheet.Tab.Color = xlNone
End If
End Sub
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Target.Address <> "$D$2" Then Exit Sub
If Target > 0 Then
Sh.Tab.Color = 5296274
Else
Sh.Tab.Color = xlAutomatic
End If
End Sub