Forum Discussion

cschim0622's avatar
cschim0622
Copper Contributor
Oct 21, 2022

Adding today's date in date column in new row of a table

I have a date column in a table that has manually entered dates. I am wanting to utilize a formula to add the current day's date in the date column when a new row is added to the table. I would like to retain the current dates that were entered manually if possible as there are almost 10,000! I am sure this can be done, but I can't seem to figure it out!

 

Can anybody help with this? You will be my savior!

4 Replies

  • cschim0622's avatar
    cschim0622
    Copper Contributor
    I am currently using the following formula...
    =IF(ISBLANK(M2),TODAY())
    Where column M is my date column. I get a date to return, but excel keeps returning 1/0/1900 as today's date.
    • dscheikey's avatar
      dscheikey
      Bronze Contributor

      cschim0622 

      Hi, you could try the following. Assume that your new row is row 12. If an entry is made in column A, the value in column K, i.e. the date in K12, should be fixed.

      Then you have to write in K12:

       

      =IF(A12="",TODAY(),K12)

      So the cell refers to itself and is therefore no longer updated.

Resources