concatenate date + text

Eddie G.

Board Regular
Joined
Feb 27, 2002
Messages
98
Is there any way to concatenate a date and text:
cell a1 is a date 03/11/02
cell a2 is text 96% - Good
cell a3 is a comma ,

i want to concatenate all three:
03/11/02, 96% - Good
but the date comes out as a number 35755 or similar.
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Hi,

Try this:-

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

If you're using a different date format then change as necessary.
 
Upvote 0
On 2002-11-03 10:15, Eddie G. wrote:
Is there any way to concatenate a date and text:
cell a1 is a date 03/11/02
cell a2 is text 96% - Good
cell a3 is a comma ,

i want to concatenate all three:
03/11/02, 96% - Good
but the date comes out as a number 35755 or similar.

Dan just to be pedantic I think it should be:

=text(a1,"dd/mm/yy") & A3 & " " & A2
 
Upvote 0
On 2002-11-03 14:29, lasw10 wrote:
On 2002-11-03 10:15, Eddie G. wrote:
Is there any way to concatenate a date and text:
cell a1 is a date 03/11/02
cell a2 is text 96% - Good
cell a3 is a comma ,

i want to concatenate all three:
03/11/02, 96% - Good
but the date comes out as a number 35755 or similar.

Dan just to be pedantic I think it should be:

=text(a1,"dd/mm/yy") & A3 & " " & A2

I see you're trying to resolve the comma problem!
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,520
Members
448,968
Latest member
Ajax40

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