Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi all,
is it possible to format an excel cell with a text and a date in the same cell ? eg : In A1 I've a text cell : "360 :" In A2 I've a date formated in ddmmyy In A3 I've a text cell :"zzzzzzz" In A4 I would like to concatenate all the cells but I've the following result : "360:38895zzzzzzz" instead of "360:ddmmyyzzzzzzz" where 38895 is the excel date. Thank you Nic |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() =CONCATENATE(A1,TEXT(A2,"ddmmyy"),A3) HTH -- Bearacade ------------------------------------------------------------------------ Bearacade's Profile: http://www.excelforum.com/member.php...o&userid=35016 View this thread: http://www.excelforum.com/showthread...hreadid=556258 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() =A1&TEXT(A2,"ddmmyy")&A3 -- daddylonglegs ------------------------------------------------------------------------ daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486 View this thread: http://www.excelforum.com/showthread...hreadid=556258 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thank you all of you
daddylonglegs a écrit : =A1&TEXT(A2,"ddmmyy")&A3 -- daddylonglegs ------------------------------------------------------------------------ daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486 View this thread: http://www.excelforum.com/showthread...hreadid=556258 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Nic
=A1 & TEXT(A2,"ddmmyy" & A3) Gord Dibben MS Excel MVP On 27 Jun 2006 15:09:32 -0700, "Nicawette" wrote: Hi all, is it possible to format an excel cell with a text and a date in the same cell ? eg : In A1 I've a text cell : "360 :" In A2 I've a date formated in ddmmyy In A3 I've a text cell :"zzzzzzz" In A4 I would like to concatenate all the cells but I've the following result : "360:38895zzzzzzz" instead of "360:ddmmyyzzzzzzz" where 38895 is the excel date. Thank you Nic |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Text File creates incorrect Date format | Excel Discussion (Misc queries) | |||
Text and dates into one cell without loosing date format | Excel Discussion (Misc queries) | |||
How to format cell with text and date. | Excel Discussion (Misc queries) | |||
Excel keeps converting text to date format | Excel Discussion (Misc queries) | |||
Addition to Turn cell red if today is greater or equal to date in cell | New Users to Excel |