DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
[SIZE="2"]Dim tp As Double
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address <> "$E$3" Then Exit Sub
If Target.Column = 5 And IsNumeric(Target.Value) = True Then tp = Target.Value
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
'If Target.Column <> 5 Then Exit Sub
If Target.Address <> "$E$3" Then Exit Sub
On Error GoTo çık
Application.EnableEvents = False
If Target.Value = "" Then tp = Empty
Target.Value = Target.Value + tp
çık:
Application.EnableEvents = True
End Sub[/SIZE]