Forum Discussion
chanchal20
Jul 12, 2023Copper Contributor
Unable to change the date format
Hi, Can anyone please support me in changing the desired date format from Jul 9, 2023 22:59:16 +04 to dd/mm/yy Options I tried - 1. Custom date format (it's not reflecting in the cell value) 2...
SergeiBaklan
Jul 12, 2023Diamond Contributor
As variant
=DATE(
MID(A1, SEARCH(",", A1) + 2, 4),
MONTH(LEFT(A1, SEARCH(",", A1) - 1)),
DAY(LEFT(A1, SEARCH(",", A1) - 1))
)