+ Reply to Thread
Results 1 to 2 of 2

Cell entry triggers timestamp THAT DOES NOT CHANGE

  1. #1
    Registered User
    Join Date
    02-01-2016
    Location
    Milwaukee, WI
    MS-Off Ver
    2013
    Posts
    28

    Cell entry triggers timestamp THAT DOES NOT CHANGE

    I am trying to create a formula that triggers a date and time timestamp in the adjacent cell, but everytime I open the document or edit a cell it changes to the current time. I was looking for a formula that might accomplish this. I am trying not to use a VBA Thanks! I posted the formula that I am currently using that is not working.

    =IF(E2="","",IF(E2="No order",NOW(),""))

  2. #2
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: Cell entry triggers timestamp THAT DOES NOT CHANGE

    The only way to do it without VBA is to use a circular reference.

    First, your if E2="" is redundant because of the next if testing if e2 = "No order"
    So you don't need to bother testing if e2 is "", because the ="No order" will already be False and return ""
    So this is sufficient
    =IF(E2="No order",NOW(),"")

    Now, first thing is to set E2 to a state that makes that formula return "",
    So clear contents of E2

    Go to File - Options - Formulas
    Check the box "Enable iterative calculation"
    Click OK

    Change your formula to this (where F2 is the cell you're putting the formula into)
    =IF(E2="No order",IF(F2="",NOW(),F2),"")

    Now when you change E2 to No Order, F2 will populate with Now, and won't change unless you remove No Order from E2.
    Last edited by Jonmo1; 08-12-2016 at 10:50 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Capturing VBA timestamp in milliseconds on cell value change
    By VJAIN64 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-29-2015, 01:01 AM
  2. [SOLVED] Timestamp in single cell if range of cells change?
    By amolo in forum Excel General
    Replies: 7
    Last Post: 12-16-2014, 03:56 PM
  3. timestamp after entry of data
    By scabertrain in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-05-2014, 02:26 PM
  4. [SOLVED] I Want the Timestamp Value Not to Change if the Name Cell Changed
    By bssol in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 09-07-2013, 04:48 AM
  5. Timestamp in Reference to a Change in Value of a Cell
    By martin4angelo in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-21-2012, 03:30 AM
  6. Filter change triggers event?
    By ckiraly in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-26-2007, 03:54 PM
  7. Excel formula timestamp for a data entry of a referenced cell
    By jmasaki in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 07-02-2006, 09:25 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1