- 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
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Intersect(Target, [B3:B65536]) Is Nothing Then Exit Sub
With Target
.ClearComments
.AddComment
.Comment.Visible = True
.Comment.Text Text:="YILLIK İZİN : " & Cells(Target.Row, "AJ") & Chr(10) & _
"RAPOR : " & Cells(Target.Row, "AK") & Chr(10) & _
"G. GÖREV : " & Cells(Target.Row, "AL") & Chr(10) & _
"ADLİ NÖBET : " & Cells(Target.Row, "AM") & Chr(10) & _
"EĞİTİM : " & Cells(Target.Row, "AN") & Chr(10) & _
"ÜCRETSİZ İZİN : " & Cells(Target.Row, "AO")
.Comment.Shape.Select
Selection.ShapeRange.ScaleHeight 1.2, msoFalse, msoScaleFromTopLeft
Selection.Font.Bold = True
.Comment.Visible = False
End With
End Sub