concatenating two fields in one cell, of which one is a date.

  • Thread starter Thread starter Manuel Murieta
  • Start date Start date
M

Manuel Murieta

I have two cells:
Cell A2 Today's date is
Cell A3 02/08/2007
I want cell A4 to state: Today's date is 02/08/2007

When I use the formula =CONCATENATE(A2," ",A3) I get the following:
Today's date is 17669

How do I make this state [Today's date is 02/08/2007] in one field?
 
One way:

=A2&" "&TEXT(A3,"dd/mm/yyy")

Or

=CONCATENATE(A2," ",TEXT(A3,"dd/mm/yyy"))

Regards

Trevor
 
I have two cells:
Cell A2 Today's date is
Cell A3 02/08/2007
I want cell A4 to state: Today's date is 02/08/2007

When I use the formula =CONCATENATE(A2," ",A3) I get the following:
Today's date is 17669

How do I make this state [Today's date is 02/08/2007] in one field?

=CONCATENATE(A2," ",TEXT(A3,"mm/dd/yyyy"))


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Cell Formatting 2
Excel =SUM(A1=A1+B1) 0
date / time difference 7
Sum values preceg today 1
Date Formulas & format 3
Forcing Carriage Returns (or New Line)... 2
Year + week => first date of week 9
Blank Cells 3

Back
Top