Forum Discussion

Ansari3108's avatar
Ansari3108
Copper Contributor
Sep 08, 2022

Need help in extracting the latest date from a cell

Hello Everyone,

 

Last 7 Days (9/1/22-9/7/22)

Need help in extracting the latest date from the above string in a cell.

  • Ansari3108 

    Let's say the text is in cell A1.

    Enter the following formula in another cell:

     

    =DATEVALUE(MID(A1,FIND("-",A1)+1,LEN(A1)-FIND("-",A1)-1))

     

    Format the cell with the formula as a date.

  • Harun24HR's avatar
    Harun24HR
    Bronze Contributor

    Ansari3108 If you have access to most recent release of Excel formulas then try-

    =--TEXTBEFORE(TEXTAFTER(A1,"-",-1),")")

    For older excel later than 2013 can try. See the attached file.

    =FILTERXML("<t><s>"&SUBSTITUTE(SUBSTITUTE(A1,")",""),"-","</s><s>")&"</s></t>","//s[last()]")

     

     

  • Ansari3108 

    Let's say the text is in cell A1.

    Enter the following formula in another cell:

     

    =DATEVALUE(MID(A1,FIND("-",A1)+1,LEN(A1)-FIND("-",A1)-1))

     

    Format the cell with the formula as a date.

Resources