CONCATENATE Formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to use this formula in Excel 2007. I have 5 cells I'm combining
and 1 of the cells uses the - TODAY() - formula. When concatenate returns
the value for this cell, it only displays numbers. How do I make this cell
return the date instead? Any help is appreciated.
 
Instead of just TODAY(), use

TEXT(TODAY(),"mm/dd/yyyy")

Change the mm/dd/yyyy to your desired date format.

If you want to only change the link, then change it like this example, from

E1

to

TEXT(E1,"mm/dd/yyyy")

where E1 has the formula

=TODAY()

HTH,
Bernie
MS Excel MVP
 
if A1 has:
"today is: "
and A2 has
=TODAY()

then in A3:
=A1 & TEXT(A2,"mm/dd/yyyy")
 
Try something like this:

=CONCATENATE(A1," ",B1," ",TEXT(C1,"m/dd/yyyy"))

HTH,
Paul
 
If it's anything like E2003 then try:

=TEXT(A1,"dd:mm:yyyy")&TEXT(B1,"dd:mm:yyyy")

Mike
 

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

Concatenate formula 2
Concatenate not working 2
Concatenate 1
Duplicate "Drag" feature 2
Text to Formula 3
How to simplify CONCATENATE 3
Excel Concatenate with line breaks but ignore blank cells 3
concatenate problems 9

Back
Top