excel - How to merge a time formatted cell with other cells as (hh:mm:ss) instead of it being displayed as a decimal number? -


I was trying to merge the time format cell with other cells.
The entire cell should look like this after the merger:

  Thursday 13 February 16:20:23 2014  

But, what do I get :

  Thursday February 13 0.680821759259259 2014  

This is a formula I have used to merge:
= A1 And "" and B1 & amp; "" & Amp; C1 & amp; "& Amp; D1 and" "& Amp; E1
Can it merge in a way that gives me the date hh: mm: ss instead of the decimal number I got?

Your result is text, so go ahead and turn on your value in the text before merge. If you get results , D1 will have to catch the time. Try: = A1 and "" and B1 and "" and "C1 and" & amp; Text (D1, "HH: mm: SS") & amp; "" & amp; E1 or = A1 & amp; "" And B1 and "" and "C1 and" "and text (D1," H: MM: SS AM / BM ") and" "and A1

/ Html>

Comments

Popular posts from this blog

python - Writing Greek in matplotlib labels, titles -

c# - LINQ to Entities does not recognize the method 'Int32 IndexOf(System.String, System.StringComparison)' method -

Pygame memory leak with transform.flip -