Dates format when using "&"

keith

Board Regular
Joined
Mar 3, 2002
Messages
88
Does anyone know how to make dates resolve into a date format not a number when using a "&" ?

Example: y2 and z2 contain dates. I want to display those values combined into 1 cell seperated by a dash.

Formula is: =y2&" - "&z2

result is "37337 - 37377" but I need result to be "3/22/2002 - 5/1/2002"

Thanks in advance..
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hi,

You might want to try the following formula:

=text(y2,"dd/mm/yyyy")&" - "&text(z2,"dd/mm/yyyy")

HTH
 
Upvote 0
I used this formula recently:

Make 2 supplementary cells with formulas like this:
=TEXT(Y2,"mmddyyyy")
=TEXT(Z2,"mmddyyyy")

And then just concatenate like u did already.
Hope that helps!
Kyle
 
Upvote 0

Forum statistics

Threads
1,215,161
Messages
6,123,375
Members
449,098
Latest member
Jabe

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