spreadsheet formula references named range date field

beckyinDC

Board Regular
Joined
Mar 24, 2011
Messages
56
I want to have a cell in my spreadsheet do this...

=CONCATENATE("Executive Summary of SAT for ", DSRReportDate)

and I also tried

="Executive Summary of SAT for " & DSRReportDate

problem: Both are resulting in the DSRReportDate being formatted as a number 40707...should be 6/13/2011

...can I force it to be shown as a date?

the named range references a cell that has a calculation based upon other date fields (it goes with a user-defined date if one is specified, otherwise references a field with calculation Today()). All 3 fields (DSRReportDate, user-definedReportDate and TODAY are in cells formatted as dates.

any help appreciated...do I have to use VBA?
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Hi BeckyinDC,

Does this work....

=CONCATENATE("Executive Summary of SAT for ", TEXT(DSRReportDate,"MM/DD/YYYY"))

Or this....

="Executive Summary of SAT for "&TEXT(DSRReportDate,"MM/DD/YYYY")

I hope that works for you.

Ak
 
Upvote 0
Thank you so much - that did the trick. I apologize if it was a little obvious, but I was hunting in the wrong direction so this helped me a bunch.
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,280
Members
452,902
Latest member
Knuddeluff

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