Sep 08 2022 02:31 AM
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.
Sep 08 2022 03:27 AM
@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()]")
Sep 08 2022 03:28 AM
SolutionLet'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.
Sep 08 2022 03:28 AM
SolutionLet'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.