Using Ampersand & Date Function

RsuROPf

New Member
Joined
Dec 30, 2013
Messages
2
How to avoid getting a serial number format if I need to join a date with Ampersand.
For example in on column I had a date and the other column I had a text and I want to join the date and text using ampersand.
I want my cell to have something like : 12/13/13 - WEEK 2

Thanks.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Welcome to the board!

the format like this?

Excel 2010
AB
14162112/13/13 - WEEK 2

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet3

Worksheet Formulas
CellFormula
B1=TEXT(A1,"mm/dd/yy")&" - WEEK 2"

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
RsuROPf,





Assuming that the date is in cell A3 and the text is in cell B3, enter this formula in cell C3:
Code:
=MÊS(A3) & "/" & DIA(A3) & "/" & ANO(A3) & " - " & B3
 
Upvote 0

Forum statistics

Threads
1,214,430
Messages
6,119,454
Members
448,898
Latest member
drewmorgan128

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