Forum Discussion

catsrock1023's avatar
catsrock1023
Copper Contributor
Jun 01, 2021

Return current date for year

I need some help building a formula. I need to return the current year of a date in a cell in the YYYY-MM-DD format. For example, in one cell I have 1997-11-10 and I need it to return 2021-11-10 in another cell.

 

Thank you in advance!

11 Replies

  • catsrock1023 

    I don't fully understand where the problem arises.  Excel formulas accept date serial numbers but with the DATEVALUE function it will also accept formats appropriate to the machine localisation which should include ISO standard dates.  So

    = DATE( 2021, MONTH(DATEVALUE(B2)), DAY(DATEVALUE(B2)) )

    should give a serial date that can be formatted.  As an alternative if the cycle is text to text one could use

    = LET(
      old,  DATEVALUE(oldDate),
      mnth, MONTH(old),
      d,    DAY(old),
      current, DATE( 2021, mnth, d),
      TEXT(current,"YYY-MM-DD"))
    • catsrock1023's avatar
      catsrock1023
      Copper Contributor
      what if it's a string of text? i'm using this formula in a different program that supports the use of excel formulas. it uses the ISO 8601 date but projects it as "Nov 11, 1997"

      I tried the above formula with no success, I think something similar to this:
      CONCATENATE(YEAR(TODAY()), "-", TEXT(DATEVALUE(B2), "YYYY-MM-DD")
      should work but is not working lol. any suggestions based on this info?
      • HansVogelaar's avatar
        HansVogelaar
        MVP

        catsrock1023 

        Do you mean that the cell (B2 in this example) contains a text value? What do you see in the formula bar when you select that cell?

Resources