Hi Sammael,
We need to split apart the time into its respective hour and minute components by using string functions and then join them back together again as a valid time. Lets just say we have the times in column A
Follow these steps:
- in a new column (I'll use column B) enter the following formula:
=LEFT(A1,LEN(A1)-2)
This will give you the hours.
- in another column (I'll use column C) enter the next formula:
=RIGHT(A1,2)
This will give you the minutes.
- in another column enter this formula to rejoin them back together again: =TIME(B1,C1,0)
- This gives us the time however we need to convert it from a formula to a value because this formula is dependant on the other 2 previous formulas created in steps 1 and 2.
Select all of the new times and copy and paste as values either in another column of over the top of itself.
- Delete the formulas you create above leaving you with just the times
I hope this helps you out.