Einzelnen Beitrag anzeigen
Ungelesen 08.07.13, 10:33   #11
VideoLord
Zentrum der Macht
 
Registriert seit: May 2009
Beiträge: 83
Bedankt: 68
VideoLord leckt gerne myGully Deckel in der Kanalisation! | 140907 Respekt PunkteVideoLord leckt gerne myGully Deckel in der Kanalisation! | 140907 Respekt PunkteVideoLord leckt gerne myGully Deckel in der Kanalisation! | 140907 Respekt PunkteVideoLord leckt gerne myGully Deckel in der Kanalisation! | 140907 Respekt PunkteVideoLord leckt gerne myGully Deckel in der Kanalisation! | 140907 Respekt PunkteVideoLord leckt gerne myGully Deckel in der Kanalisation! | 140907 Respekt PunkteVideoLord leckt gerne myGully Deckel in der Kanalisation! | 140907 Respekt PunkteVideoLord leckt gerne myGully Deckel in der Kanalisation! | 140907 Respekt PunkteVideoLord leckt gerne myGully Deckel in der Kanalisation! | 140907 Respekt PunkteVideoLord leckt gerne myGully Deckel in der Kanalisation! | 140907 Respekt PunkteVideoLord leckt gerne myGully Deckel in der Kanalisation! | 140907 Respekt Punkte
Standard

Probier mal das hier, ansonsten läuft der eingestellte Code immer in einer Schleife, die Excel zum Absturz bringen.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo EndeSub
    Application.EnableEvents = False
    If ActiveCell.Row = 3 And ActiveCell.Column = 4 Then
    Range("B3").Value = Time
    End If
    If ActiveCell.Row = 3 And ActiveCell.Column = 4 Then
    Range("A3").Value = Date
    End If
EndeSub:
  Application.EnableEvents = True
End Sub
Ausgabezellen:
A3 = Datum
B3 = Uhrzeit

Eingabefeld:
D3 = Eingabe
VideoLord ist offline   Mit Zitat antworten