how to get the date they updated it

Dark0Prince

Active Member
Joined
Feb 17, 2016
Messages
433
I thought this was working to give today's date when they updated the form, but then when they opened it
Code:
 =IF(OR($E24<>"",$F24<>0),NOW(),"")
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Code:
    If Target.Column = 6 Or 7 Then
        ThisRow = Target.Row
        If (ThisRow = 1) Then Exit Sub
        ' time stamp corresponding to cell's last update
        Range("H" & ThisRow).Value = Now
        ' Windows level UserName | Application level UserName
        Range("I" & ThisRow).Value = Environ("username") & "|" & Application.UserName
    End If
It works when i use 6 but when i enter data in collumn 7 it doesn't work


solved when I changed it to
Code:
     If Target.Column = 6 Or Target.Column = 7 Then
 
Last edited:
Upvote 0
Each side of the "OR" needs to be a complete statement, i.e.
Code:
If Target.Column = 6 Or Target.Column = 7 Then
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,202
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top