Excel Concatenate Date with Time

Solved
Mrfrize Posted messages 197 Registration date   Status Member Last intervention   -  
 AC -
Hello,

I have a date in a cell (A1) in the format dd/mm/yyyy given by the formula today()
in another cell (B1) an hour in hh:mm given by the formula now().

I would like to concatenate them in a cell (C1) using a macro in the format "dd/mm @ hh:mm".

Today I do it manually (I rewrite the date and the time with an @ between them).

Does anyone have a solution for me please?

Thank you in advance

Configuration: Windows XP / Internet Explorer 7.0

7 answers

Patrice33740 Posted messages 8400 Registration date   Status Member Last intervention   1 782
 
Or:
=TEXT(A1 + A2,"dd/mm/yyyy" " @ " " hh:mm")
13
AC
 
Thank you, it helped me.
0