Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Calculating Date Entered
Message
Information générale
Forum:
Microsoft Office
Catégorie:
Excel
Versions des environnements
Microsoft Office:
Office 2010
Divers
Thread ID:
01555177
Message ID:
01555249
Vues:
35
>Two columns in my worksheet need to work as follows:
>When Column N gets filled in, Column M needs to automatically get the current date. So, if Column N gets filled in today, Column M would have today's date. Tomorrow, Column M would still have today's date.
>
>How can I do this?
>
>Jerry


Hi Jerry,

See if it helps:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Selection.Column = 14 Then       'Column N
       Cells(Selection.Row - 1, 13).Value = Now
    End If
End Sub
Good Luck
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform