Is it possible to create your own custom format?
Try this:
Since Column B already has the day number
Example (using english)
C2: =CHOOSE(B2,"Sun","Mon","Tue","Wed","Thu","Fri","Sa t")
Does that help?
***********
Regards,
Ron
"Scott Steiner" wrote:
Ron Coderre wrote:
Would something like this work for you?:
First, create a lookup table for the days:
Example (using French):
D1: Mon
E1: Lundi
D2: Tue
E2: Mardi
(etc)
For a date in A2:
B2: =VLOOKUP(TEXT(A2,"ddd"),D1:E7,2,0)
Does that help?
Unless I'm doing something wrong here, using vlookup is also changing
the underlying value of the cell.
At the moment the table looks like this:
- column A has dates stored
- column B is simply =WEEKDAY(A) using custom format "dddd" i.e. column
has numbers from 1-7 stored but these are represented as days without
changing the underlying value.
Using VLOOKUP is changing the underlying value of the cell i.e. not only
is "Sunday" displayed but "Sunday" is also actually the value of the
cell, something I want to avoid.
|