- Katılım
- 27 Nisan 2021
- Mesajlar
- 32
- Excel Vers. ve Dili
- 2010 Türkçe
Kod:
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Cells.Interior.ColorIndex = xlColorIndexNone
ActiveCell.EntireColumn.Interior.ColorIndex = 19
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Cells.Interior.ColorIndex = xlColorIndexNone
ActiveCell.EntireColumn.Interior.ColorIndex = 19
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Cells.Borders.LineStyle = xlNone
ActiveCell.EntireColumn.Borders(xlEdgeRight).LineStyle = xlContinuous
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Cells.Borders.LineStyle = xlNone
With ActiveCell.EntireColumn.Borders(xlEdgeRight)
.LineStyle = 1
.Color = vbBlue
.Weight = xlThick
End With
End Sub
Ben de Sayın Korhan Ayhan'ın belirttiği gibi makro kaydet yöntemini kullandım.Bu temel kod yapılarını MAKRO KAYDET yöntemi ile elde edebilirsiniz.