Automatic date update in a cell when another cell's value changes (as calculated by a formula)

后端 未结 4 458
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-17 02:50

I have a formula in C2, say =A2+B2. Whenever C2 changes value (actual value, not formula) I want to have the present date and time updated in D2.

I have

4条回答
  •  失恋的感觉
    2020-12-17 03:41

    The simplest way is to add =IF(B3="","Not Allocated",Now()) and change the format of the column to the required date and time format. But here if the B column is edited, the date and time of the respective column that needs the update will gets updated automatically for all the columns since not checking the old value. But if it is fine to get current Time this can be easily used.

提交回复
热议问题