Returning a date format in a formula as date format (currently showing as text)

divster27

New Member
Joined
Jan 19, 2021
Messages
20
Office Version
  1. 2016
Platform
  1. Windows
I have a simple formula that looks at cells to return a string of data - release date , Artist, Title

Release date is in column M, Artist in column B, title in column C

i want to come back with the following data

Release date = 12/03/2021 - Black Crowes - Southern Harmony
my formula looks like this

="RELEASE DATE = "&M60 &" - "&B60&" - "&C60

Excel is returning the date in text format so it comes out like this:

Release date = 44267 - Black Crowes - Southern Harmony

with 44267 being the text format of the date - i want it to return the date format.

any suggestions?
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
You need to use the TEXT function in the formula to preserve the date in the correct format.
Excel Formula:
="RELEASE DATE = "&TEXT(M60,"dd/mm/yyyy")&" - "&B60&" - "&C60
 
Upvote 0
Solution
not sure i can mark all as the solution - but you're all right!
 
Upvote 0
Thanks, fluff, but I'd suggest @Toadstool's post for 2 undisclosed reasons :)
"Undisclosed reasons"?
Is it because I didn't see the required date format so checked the release date of Southern Harmony and found it was 12 May 1992 so figured dd/mm/yyyy was more likely than mm/dd/yyyy as then at least the day would be correct?
Is it because this is one of my very, very few responses which didn't use AGGREGATE?
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,429
Members
448,961
Latest member
nzskater

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