Trying to convert date to day

I

icky

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.
 
B

Barb Reinhardt

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.
 
D

Dave Peterson

=text(a1,"dddd")

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

mm/dd/yyyy* dddd

And widen the column.
 
B

Barb Reinhardt

Dave,

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

Thanks,
Barb
 
Top