date conversion formula in excel -


i have dated in format "09-may-13 06.42.46.097127000 pm" , need convert format "2013-05-09t18:42:47.132z". goal find out happend earlier. not sure how format these dates.

2013-05-09t18:42:47.132z    09-may-13 06.42.46.097127000 pm 2013-05-08t20:56:55.821z    06-may-13 03.22.09.129443000 pm 2013-05-08t20:51:45.287z    06-may-13 03.03.22.975700000 pm 2013-05-08t20:55:34.719z    06-may-13 10.40.55.924181000 pm 

how can that??

i posted answer converted 1 of formats other. see need compare them, can convert format in a2 date/number values ....

09-may-13 06.42.46.097127000 pm

.....with formula

=substitute(substitute(a2,".",":",1),".",":",1)+0

and format in a3

2013-05-09t18:42:46.097z

....with formula

=substitute(substitute(a3,"t"," "),"z","")+0

you can format results how like, leave numbers or format m/d/yyyy hh:mm:ss.000 or similar. can compare formula

=b2>b3

or smaller or larger min or max


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -