View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Rick Rothstein Rick Rothstein is offline
external usenet poster
 
Posts: 5,934
Default How do i concatenate two date fields.

Use the TEXT function. For example...

=TEXT(A1,"mm/dd/yyyy")&" - "&TEXT(A2,"mm/dd/yyyy")

where A1 and A2 are assumed to hold your dates and that the format you want
your dates in are mm/dd/yyyy.

--
Rick (MVP - Excel)


"J9" wrote in message
...
Dear Excel

How do i concatenate two date fields with out losing the date format?

Thanks