- Katılım
- 30 Kasım 2006
- Mesajlar
- 411
- Excel Vers. ve Dili
- Excel 2007 - Türkçe
DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Cells.Interior.ColorIndex = xlColorIndexNone
ActiveCell.EntireColumn.Interior.ColorIndex = 19 'Sütun Rengi
ActiveCell.EntireRow.Interior.ColorIndex = 17 ' Satır Rengi
ActiveCell.Cells.Interior.ColorIndex = 4 ' Hücre Rengi
[COLOR=red] If Target.Column > 7 And Target.Row > 2 Then Cells(Target.Row, "A") = Target
[/COLOR]End Sub
Option Explicit
Sub Aktar()
Range("A3:A10000").Value = Range(Cells(3, ActiveCell.Column), Cells(10000, ActiveCell.Column)).Value
End Sub