Converting odd date format into actual date

Viewed 42

I have general formatting coming across as 'Sep 30 2021'. How can I easily convert this to read 2021-09-01? I have attempted to do so the normal routes but it appears I need a formula to solve this issue. Any and all help is appreciated.

1 Answers

Generally you can do this by =Text(Column, "yyyy-mm-dd")

Related