Trying to convert date to day

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

Guest

I am trying to convert a date, column A(ie 01/16/2006), to the day of the
month, column B, that this date format represents.
column column
A B
01/16/2006 Thursday

Is this possible or am I in another demention.
 
Nope, you aren't in another dimension. If you just want the day displayed,
you can use this formula:

=LOOKUP(WEEKDAY(A1),{1,2,3,4,5,6,7},{"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"})

There may be an easier way, but this works.
 
=text(a1,"dddd")

But I think I'd use a custom format in column A:

mm/dd/yyyy* dddd

And widen the column.
 
Dave,

If someone were to use a Pivot Table to evaluate this data, would it work or
not? I'm thinking NOT.

Thanks,
Barb
 

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

Back
Top