Every now and then I get what I believe to be a Chinese date. Any suggestions on how to convert this?
2017年11月22日 10:37
I need to keep the time.
If all you need is the time value from it, then you can use this formula...
=0+TRIM(RIGHT(A1,5))
If you want the entire date/time value, and if the months and days are always two digits long (leading zeroes added where necessary), then you can use this formula...
=0+REPLACE(REPLACE(REPLACE(A1,5,1,"/"),8,1,"/"),11,1,"")
If you cannot be sure of the leading zeroes on the months/days less than 10, then you should be able to use this formula...
=0+SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,"年","/"),"月","/"),"日","")