Home
Forums
New posts
Search forums
Articles
Latest reviews
Search resources
Members
Current visitors
Newsgroups
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Home
Forums
Newsgroups
Microsoft Excel
Microsoft Excel Misc
Questing regarding Date Stamp
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Gunti, post: 12735607"] Hi, I need a cell (U) to display the current date (and keep it) everytime i change something in row W. I found the following code: Private Sub Worksheet_Change(ByVal Target As Excel.Range) With Target If .Count > 1 Then Exit Sub If Not Intersect(Range("W2:W9999"), .Cells) Is Nothing Then Application.EnableEvents = False With .Offset(0, 1) .NumberFormat = "dd mmm yyyy" .Value = Date End With Application.EnableEvents = True End If End With End Sub I've got one main question, can i change this formula to also activate when a formula value changes? (Let's say W2 is IF(A1="";"Empty";"Not Empty") Now when i enter something in A1, W2 should change from Empty to Not Empty. The Date Stamp code, however, does not see this as a change in the cell.. Is there any way to solve this? Greets & Thanks, gunti [/QUOTE]
Verification
Post reply
Home
Forums
Newsgroups
Microsoft Excel
Microsoft Excel Misc
Questing regarding Date Stamp
Top