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

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
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,214,940
Messages
6,122,361
Members
449,080
Latest member
Armadillos

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