Forum Discussion
AngelikiEfth
Nov 12, 2020Copper Contributor
Extracting Time from a Day-Month-Date-Time-Year value in Excel
I have a table with data like this: Wed Jan 23 23:58:50 2019. How do I extract only the time? Please help me on this. Most grateful!!!
- Nov 12, 2020
HansVogelaar
Nov 12, 2020MVP
Let's say you have a date+time value in cell A2.
In B2, there the formula
=TIMEVALUE(MID(SUBSTITUTE(G8," ",REPT(" ",255)),640,255))
and format it as time
- AngelikiEfthNov 12, 2020Copper Contributorthank you!!