Text and Date

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to end up with something like "Week of May 14 to May 18", but
when I combine the text with the date (from another cell), the date shows up
as a serial number. If necessary, I can break this use as many as three
cells.
Scafidel
Louisiana
 
Do you have both dates in separate cells? Like this:

A1 = May 14 (formatted as DATE)
A2 = May 18 (formatted as DATE)

="Week of "&TEXT(A1,"mmm dd")&" to "&TEXT(A2,"mmm dd")

You may want to make sure there are in fact dates in both cells, otherwise,
an empty cell will return Jan 00:

=IF(COUNT(A1:A2)<2,"","Week of "&TEXT(A1,"mmm dd")&" to "&TEXT(A2,"mmm dd"))

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Dates 6
Date Dilemna 3
date and time 1
Simple Methods to Export Gmail to Text? 1
Dates as text 7
Concatenate 7
Min and Max Dates in Range that Contains Zeroes, Dates, and Number 5
Date Format as *3/14/2008 9

Back
Top