zetkatamet
Altın Üye
- Katılım
- 13 Mart 2008
- Mesajlar
- 1,410
- Excel Vers. ve Dili
- Office 365 Türkçe
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_Change(ByVal Target As Range)
If Range("H5") = 1 Then
With Range("B5").Borders(xlDiagonalDown)
.LineStyle = xlContinuous
.Weight = xlThick
.ColorIndex = 1
End With
Else
Range("B5").Borders(xlDiagonalDown).LineStyle = xlNone
End If
End Sub