Date Range displayed in header
Thanks for the quick reply.
I couldn't get it to work as typed, error. However, if I modify it will at
least not give error, but formatting isn't correct. It only works in the
worksheet though, if in header only shows as text.
I modified like this:
=CONCATENATE("Date Range: " & MIN(A:A)," - " & MAX(A:A))
and get this:
Date Range: 38995.7438773148 - 39007.7204976852
Cell is set to date mm/dd/yy
"Dave F" wrote:
=CONCATENATE("Date Range": ",MIN([range])," - ",MAX([range]))
Note the space after the colon and before and after the hyphen,
elseeverythingwillgetsquashedtogetherlikethis.
Dave
--
Brevity is the soul of wit.
"Bdadmin" wrote:
I am attempting to put the range of MIN and MAX dates pulled from a column. I
would like it to look like:
Date Range: 9/6/2006 - 10/26/2006
from a column like this:
Date
09/06/2006
09/06/2006
09/10/2006
10/12/2006
10/26/2006
Thanks in advance
BD
|