if it is in the same format i.e4 characters format, we can create formula to separate first two characters with last two characters separated by colon.
for example if cell H3 contains 0838 we can write formula in a result cell as :
=CONCATENATE(LEFT(H3,2),":",RIGHT(H3,2))
Last Wiki Answer Submitted: March 1, 2012 7:11 am by shivasanjay1,080 pts.
All Answer Wiki Contributors: shivasanjay1,080 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
Try the formula using this:
=CONCATENATE(LEFT(H1,2),”:”,RIGHT(H3,1))
This will convert 0838 to 08:38.
You can then Copy the cell and Paste Values into another cell to force the format as a time.
Thanks! It’s working great. Sorry i am not an expert in excel
say if there are records from H1 to H3
e.g. 0838 – H1
12:50 – H2
09:11- H3
How do i apply this formula?
Try the formula using this:
=CONCATENATE(LEFT(H1,2),”:”,RIGHT(H3,1))
This will convert 0838 to 08:38.
You can then Copy the cell and Paste Values into another cell to force the format as a time.
Hope it helps!