Update Timestamp

Hello All,I have another simple question that I can’t figure out.
I have an update timestamp column in a table.
In Fields I have the Auto-Update Value set to “CurrentDateTime()”. I also have the same value set for the Add.
But no matter how often I update the record the update timestamp never populates.Any thoughts about where I am going wrong?Thanks.

did you add it to the “Default Value” field under “Add Page” Heading on the Fields Tab ?
this will set the your field name to the value specified to this value when a record is created

Hi sticcino,Yes I did that and it populates on ADD, but the Edit function doesn’t update the timestamp on SAVE.Thanks.

Simply put this in “Row_Updating” server event:$rsnew[“MyField”] = CurrentDateTime(); // adjust “MyField” to your actual field name

Thanks, that did it!
My first project is moving along thanks to you guys, I really appreciate it.Sincerely,Craigbert