Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
For this formula:
=CONCATENATE(BB201, " on ",BE201) where BE201 is a cell with either a date, or a date and time, my problem is that while the value in the BE201 cell itself shows up formatted as a date and not the Excel value for the date, when I grab it as the second part of my concatenate string, it shows up as the numeric date value. Is there a way to have BE201 show up as text, say, 01/20/05 instead of 38747??? I have fiddled around with a few ideas, none of which seems to work. My thanks in advance for thoughts or a solution. Cheers! Brad |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Use the following variant:
=CONCATENATE(BB201, " on ",TEXT(BE201,"mm/dd/yyyy")) -- Kevin Backmann "Brad" wrote: For this formula: =CONCATENATE(BB201, " on ",BE201) where BE201 is a cell with either a date, or a date and time, my problem is that while the value in the BE201 cell itself shows up formatted as a date and not the Excel value for the date, when I grab it as the second part of my concatenate string, it shows up as the numeric date value. Is there a way to have BE201 show up as text, say, 01/20/05 instead of 38747??? I have fiddled around with a few ideas, none of which seems to work. My thanks in advance for thoughts or a solution. Cheers! Brad |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=concatenate(bb201, " on ", text(be201,"mm/dd/yyyy"))
or =bb201&" on "&text(be201,"mm/dd/yyyy") Brad wrote: For this formula: =CONCATENATE(BB201, " on ",BE201) where BE201 is a cell with either a date, or a date and time, my problem is that while the value in the BE201 cell itself shows up formatted as a date and not the Excel value for the date, when I grab it as the second part of my concatenate string, it shows up as the numeric date value. Is there a way to have BE201 show up as text, say, 01/20/05 instead of 38747??? I have fiddled around with a few ideas, none of which seems to work. My thanks in advance for thoughts or a solution. Cheers! Brad -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Brad,
You are right Text() and Format() do not work ... I can only get it to work that way ... =CONCATENATE(BB201, " on ",DAY(BE201)&"/"&MONTH(BE201)&"/"&YEAR(BE201)) HTH Cheers Carim |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to concatenate text & date | Excel Discussion (Misc queries) | |||
Date showing incorrect. 30:00 hrs showing 06:00 | Excel Discussion (Misc queries) | |||
Date showing as numeric value in a text string formula | Excel Discussion (Misc queries) | |||
I know how to concatenate ,can one de-concatenate to split date? | New Users to Excel | |||
concatenate text and date | Excel Discussion (Misc queries) |