Adding text and date problem

N

newman

I have text in column 1, a date in column 2 and in column 3 I wish to
show the text followed by the date.
I have tried both Concatenate and & but the the result is text followed
by the underlying number representing the date. I cannot seem to format
this column to show the date as dd/mm/yy. Any suggestions?

Regards
 
N

Niek Otten

="Today is: "&TEXT(A1,"mm/dd/yyyy")

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

|I have text in column 1, a date in column 2 and in column 3 I wish to
| show the text followed by the date.
| I have tried both Concatenate and & but the the result is text followed
| by the underlying number representing the date. I cannot seem to format
| this column to show the date as dd/mm/yy. Any suggestions?
|
| Regards
 
E

Erny

Example for text in Cell A1, date in cell B1: In C1, enter the formula

=A1&TEXT(B1,"dd/mm/yy")

Then copy downwards the formula for the range you wish to use.

Kind regards,
Erny
 
N

newman

Niek said:
="Today is: "&TEXT(A1,"mm/dd/yyyy")

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

|I have text in column 1, a date in column 2 and in column 3 I wish to
| show the text followed by the date.
| I have tried both Concatenate and & but the the result is text followed
| by the underlying number representing the date. I cannot seem to format
| this column to show the date as dd/mm/yy. Any suggestions?
|
| Regards

Thanks

I have one other question.

I have modified your info to also show the time using the now()
function.

However I have to press F9 to recalc this when I need to see the correct
time in the cell. Is it possible to have an automatic recalc occur at
set intervals or alternatively when that particular worksheet becomes
the active one?

Regards
 

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

Top