Date Entry in 1 Cell with result populating for entire week in ano

M

Mike

What I am trying to do is user types in date in 1 cell (say B2)i.e. 02/03/08
C2 populates with the date + 6

Then in A7 I would like it to take the date from Cell B2 and show up as 1 of
2 ways:
either:
Week of: 02/03/08 - 02/09/08
or
Week of: February 3, 2008 - February 9, 2008

Everything I have tried gives me a result in numerals or a #value error

="Week of:"+B2&" - "&C2 - this results in the #value error
=b2&" - "&c2 - this results in 39481 - 39487

I have formated all cells as Date as well.
 
M

Marcelo

hi Mike

="week of: "&text(b2,"mm/dd/yy")&" - "&text(c2,"mm/dd/yy")

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"Mike" escreveu:
 
M

Mike

Try this
="Week of: "&TEXT(B2,"mm/dd/yy")&"-"&TEXT(C2,"mm/dd/yy")
or
="Week of: "&TEXT(B2,"mmmm d, yyyy")&"-"&TEXT(C2,"mmmm d, yyyy")
 
M

Mike

Thank you very much, it worked

Mike said:
Try this
="Week of: "&TEXT(B2,"mm/dd/yy")&"-"&TEXT(C2,"mm/dd/yy")
or
="Week of: "&TEXT(B2,"mmmm d, yyyy")&"-"&TEXT(C2,"mmmm d, yyyy")
 

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

Top