aydgur
Altın Üye
		- Katılım
 - 31 Ekim 2005
 
- Mesajlar
 - 455
 
- Excel Vers. ve Dili
 - Excel 2007 Türkçe
 
- Altın Üyelik Bitiş Tarihi
 - 04-03-2028
 
Ekli dosyalar
- 
		
			
	
			
		
		
		11.7 KB Görüntüleme: 3
 
	DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
	Altın Üyelik Hakkında Bilgi
Ctrl+Shift+Noktalı virgül( ; ) tuşlarına basarak seçili hücreye tarih yazdırırsınız.  | 
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim cell As Range
    For Each cell In Target
        If cell.Value = "bugün" Then
            cell.Value = Format(Date, "d.m.yyyy")
        End If
    Next cell
End Sub
	Private Sub Worksheet_Change(ByVal Target As Range)
    Dim cell As Range
    Dim watchCell As Range
    Set watchCell = Me.Range("I14")
   
    If Not Application.Intersect(Target, watchCell) Is Nothing Then
        For Each cell In Target
            If cell.Value > 0 And IsEmpty(cell.Offset(0, 1).Value) Then
                cell.Offset(0, 1).Value = Date
            End If
        Next cell
    End If
End Sub