I have a datestamp in this format on C6:
21/05/2021 10:41:35 PM
How can I split this into date and time so that I have date in D6 and time in E6?
I want to do this because I have browsing history I want to import to calendar.
I found several answers to this question with various answers but none of them worked for me.
You can use
SPLIT(C6, " ")
to split contents of the cell. This splits the time and AM/PM too, but you can join it in another cell usingJOIN(" ", E6:F6)