Reputation: 299
I have a tricky issue in excel; I have a concatenated string, consiting of two time-values:
Time values in Formatted Cells = 15:00:00 and 23:00:00
Concatenated Cell SHOULD be 15:00:00 23:00:00
Concatenated Cell Currently is 0.625 0.95833...
I understand the problem Excel has with multiple values in one cell - but is there any way to format both of them in one cell?
As those numbers come from a calculation in the first place, I can't really re-format them.
Cheers Michael
Proposed solution results in this, I can't figure out why? (Excel 16 on Windows)
Upvotes: 1
Views: 1077
Reputation: 137
Use this format, A1 cell contains 15:00:00 and B1 cell contains 23:00:00
=TEXT(A1,"hh:mm:ss")&" " &TEXT(B1,"hh:mm:ss")
Upvotes: 0
Reputation: 2441
Use this formula entered in cell D1
.
=CONCATENATE(TEXT(A1,"hh:mm:ss")&" "&TEXT(B1,"hh:mm:ss"))
Upvotes: 2