Problems with date when using =CONCATENATE formula

EdGilmore

New Member
Joined
Mar 25, 2011
Messages
12
I am trying to use =CONCATENATE formula to string together a large amount of information in a text string, but the date is returning as a number. For example:

01/03/2011 returns 40603
02/03/2011 returns 40604
03/03/2011 returns 40605
And so on

Is there any way that this can be corrected? I have tried amending the cell format to date format dd/mm/yyyy, but this still does not work.

Any ideas?
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Dates are actually numbers in Excel. You'll need to convert it to a text string first.

Appears your dates are in Day/Month/Year format so try this formula, assuming that data starts in cell A1,

=TEXT(A1, "mm/dd/yyyy")

You can then use the CONCATENATE formula, or you could use the & character which also serves as the concatenation operator.
 
Upvote 0

Forum statistics

Threads
1,224,506
Messages
6,179,159
Members
452,892
Latest member
yadavagiri

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