Formatting a date inside a formula

Stevethetaxman

New Member
Joined
Oct 9, 2003
Messages
14
Cell A1: 6/2/2011

Cell A2: ="Today's Date is "&A1

How do I get A2 to show: Today's date is 6/2/2011 and not Today's Date is 40696?

Thanks in advance.
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Cell A1: 6/2/2011

Cell A2: ="Today's Date is "&A1

How do I get A2 to show: Today's date is 6/2/2011 and not Today's Date is 40696?

Thanks in advance.
Try it like this...

="Today's Date is "&TEXT(A1,"m/d/yyyy")

Or:

="Today's Date is "&TEXT(NOW(),"m/d/yyyy")
 
Upvote 0
Cell A1: 6/2/2011

Cell A2: ="Today's Date is "&A1

How do I get A2 to show: Today's date is 6/2/2011 and not Today's Date is 40696?

Thanks in advance.

=CONCATENATE("Today's Date is ",TEXT(A1,"mm/dd/yyyy"))

or

=Concatenate("Today's Date is ", TEXT(Today(), "mm/dd/yyyy"))




I didn't refresh the thread before posting so this is a little late... I like using concatenate instead of the ampersand. Concatenate is such an imperative sounding word!
 
Last edited:
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,738
Members
452,940
Latest member
Lawrenceiow

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top